* simple.el (just-one-space): Make argument n default to 1 if
authorTassilo Horn <tassilo@member.fsf.org>
Tue, 7 Dec 2010 19:38:38 +0000 (20:38 +0100)
committerTassilo Horn <tassilo@member.fsf.org>
Tue, 7 Dec 2010 19:38:38 +0000 (20:38 +0100)
omitted.

lisp/ChangeLog
lisp/simple.el

index 3727303..6eb650a 100644 (file)
@@ -1,3 +1,8 @@
+2010-12-07  Tassilo Horn  <tassilo@member.fsf.org>
+
+       * simple.el (just-one-space): Make argument n default to 1 if
+       omitted.
+
 2010-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * electric.el (electric-indent-post-self-insert-function):
index 7300fb7..da8ac55 100644 (file)
@@ -764,6 +764,7 @@ If BACKWARD-ONLY is non-nil, only delete them before point."
   "Delete all spaces and tabs around point, leaving one space (or N spaces).
 If N is negative, deletes carriage return and linefeed characters as well."
   (interactive "*p")
+  (unless n (setq n 1))
   (let ((orig-pos (point))
         (skip-characters (if (< n 0) " \t\n\r" " \t"))
         (n (abs n)))