diff options
author | John Wiegley <johnw@newartisans.com> | 2016-08-02 11:43:07 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2016-08-02 11:43:07 -0700 |
commit | cd1b4d60ceeb74852954824fd9ba0f6c21ca9c94 (patch) | |
tree | 0280f90d49dd52884ad414f6f5c14582bc90a9ca /lisp | |
parent | f7ceb8e028923287a75b148a49c65d3232f68ace (diff) | |
download | emacs-cd1b4d60ceeb74852954824fd9ba0f6c21ca9c94.tar.gz |
Revert "Fix ses-delete-blanks to delete only blanks + documentation."
This reverts commit 3c97b0f7589e06aeb1ab0147f0ee32974c32926d.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ses.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/ses.el b/lisp/ses.el index b379ef1f9c6..0b38af41a8b 100644 --- a/lisp/ses.el +++ b/lisp/ses.el @@ -1,4 +1,3 @@ - ;;; ses.el -- Simple Emacs Spreadsheet -*- lexical-binding:t -*- ;; Copyright (C) 2002-2016 Free Software Foundation, Inc. @@ -3747,7 +3746,7 @@ Use `math-format-value' as a printer for Calc objects." "Return ARGS reversed, with the blank elements (nil and *skip*) removed." (let (result) (dolist (cur args) - (unless (memq cur '(nil *skip*)) + (unless (memq cur '(nil *skip* *error*)) (push cur result))) result)) |