summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/ses.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c89e2b39c68..b59592adc7a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2004-01-29 Jonathan Yavner <jyavner@member.fsf.org>
+
+ * ses.el (ses-initial-column-width): Increase to 14, so it will
+ work well with the default printer of "%.7g" for extreme values
+ like "-1.234567e+07".
+
2004-01-29 Kenichi Handa <handa@m17n.org>
* term/x-win.el (x-selection-value): Optimize for ASCII only case.
diff --git a/lisp/ses.el b/lisp/ses.el
index d799be032ab..b50a441d261 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -52,7 +52,7 @@
:group 'ses
:type '(cons (integer :tag "numrows") (integer :tag "numcols")))
-(defcustom ses-initial-column-width 7
+(defcustom ses-initial-column-width 14
"Initial width of columns in a new spreadsheet."
:group 'ses
:type '(integer :match (lambda (widget value) (> value 0))))