diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-14 15:20:47 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-14 15:20:47 +0000 |
commit | e20bb6294d0581eeb98aa827300d1e382f413e2c (patch) | |
tree | 3daed7fcf83bbd98db16193f5eabba33dbcd32f0 /lisp/ses.el | |
parent | e248903c199b4d2f93029f743119c054c5565ac3 (diff) | |
download | emacs-e20bb6294d0581eeb98aa827300d1e382f413e2c.tar.gz |
(ses-load): Follow error conventions.
Diffstat (limited to 'lisp/ses.el')
-rw-r--r-- | lisp/ses.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ses.el b/lisp/ses.el index d01a8307ffd..1107f21d510 100644 --- a/lisp/ses.el +++ b/lisp/ses.el @@ -1361,7 +1361,7 @@ execute cell formulas or print functions." (ses-set-parameter 'ses--file-format 2) (message "Upgrading from SES-1 file format"))) (or (= ses--file-format 2) - (error "This file needs a newer version of the SES library code.")) + (error "This file needs a newer version of the SES library code")) (ses-create-cell-variable-range 0 (1- ses--numrows) 0 (1- ses--numcols)) ;;Initialize cell array (setq ses--cells (make-vector ses--numrows nil)) |