]> code.delx.au - gnu-emacs/blobdiff - lisp/ses.el
* lisp/descr-text.el (describe-char-unicode-data): Fix copy/paste errors.
[gnu-emacs] / lisp / ses.el
index ab9f0715fd8a55d4cc009cc01e55cc21c5de5923..b2fd2bbe9a5df0a95135eef873918372fa77b61a 100644 (file)
@@ -1319,7 +1319,7 @@ printer signaled one (and \"%s\" is used as the default printer), else nil."
                           (and locprn
                                (ses--locprn-compiled locprn))))
                    printer)
-               (or value "")))
+               value))
        (if (stringp value)
            value
          (or (stringp (car-safe value))
@@ -1539,7 +1539,8 @@ Sets `ses-relocate-return' to `delete' if cell-references were removed."
        (if (setq rowcol (ses-sym-rowcol formula))
            (ses-relocate-symbol formula rowcol
                                 startrow startcol rowincr colincr)
-         formula) ; Pass through as-is.
+         ;; Constants pass through as-is.
+         formula)
       (dolist (cur formula)
        (setq rowcol (ses-sym-rowcol cur))
        (cond
@@ -3463,7 +3464,7 @@ highlighted range in the spreadsheet."
       (error "Spreadsheet is broken, both symbols %S and %S refering to cell (%d,%d)" sym old-name row col))
     (if new-rowcol
         ;; the new name is of A1 type, so we test that the coordinate
-        ;; inferred from new name 
+        ;; inferred from new name
        (if (equal new-rowcol rowcol)
             (put new-name 'ses-cell rowcol)
          (error "Not a valid name for this cell location"))