aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJohn Wiegley2016-08-02 11:43:07 -0700
committerJohn Wiegley2016-08-02 11:43:07 -0700
commitcd1b4d60ceeb74852954824fd9ba0f6c21ca9c94 (patch)
tree0280f90d49dd52884ad414f6f5c14582bc90a9ca /lisp
parentf7ceb8e028923287a75b148a49c65d3232f68ace (diff)
downloademacs-cd1b4d60ceeb74852954824fd9ba0f6c21ca9c94.tar.gz
emacs-cd1b4d60ceeb74852954824fd9ba0f6c21ca9c94.zip
Revert "Fix ses-delete-blanks to delete only blanks + documentation."
This reverts commit 3c97b0f7589e06aeb1ab0147f0ee32974c32926d.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ses.el3
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 @@
1
2;;; ses.el -- Simple Emacs Spreadsheet -*- lexical-binding:t -*- 1;;; ses.el -- Simple Emacs Spreadsheet -*- lexical-binding:t -*-
3 2
4;; Copyright (C) 2002-2016 Free Software Foundation, Inc. 3;; Copyright (C) 2002-2016 Free Software Foundation, Inc.
@@ -3747,7 +3746,7 @@ Use `math-format-value' as a printer for Calc objects."
3747 "Return ARGS reversed, with the blank elements (nil and *skip*) removed." 3746 "Return ARGS reversed, with the blank elements (nil and *skip*) removed."
3748 (let (result) 3747 (let (result)
3749 (dolist (cur args) 3748 (dolist (cur args)
3750 (unless (memq cur '(nil *skip*)) 3749 (unless (memq cur '(nil *skip* *error*))
3751 (push cur result))) 3750 (push cur result)))
3752 result)) 3751 result))
3753 3752