]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/thingatpt.el (forward-same-syntax): Handle no ARG case.
authorAaron S. Hawley <aaron.s.hawley@gmail.com>
Sat, 26 May 2012 02:40:47 +0000 (19:40 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 26 May 2012 02:40:47 +0000 (19:40 -0700)
Fixes: debbugs:11560
lisp/ChangeLog
lisp/thingatpt.el

index 8dd6c7fd31825a43ac61d085715127e2b1a5ea6c..97c1e4b532079ca2a6c5372e49f20aa48704ff6b 100644 (file)
@@ -1,3 +1,7 @@
+2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
+
+       * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
+
 2012-05-26  Glenn Morris  <rgm@gnu.org>
 
        * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
index 1600785c1173d8f3c691f117fc8268d66e6c68e6..57bbdf9d94ad83403c343d16ebdb4e1b48ace0c8 100644 (file)
@@ -457,6 +457,7 @@ backwards ARG times if negative."
 With prefix argument ARG, do it ARG times if positive, or move
 backwards ARG times if negative."
   (interactive "p")
+  (or arg (setq arg 1))
   (while (< arg 0)
     (skip-syntax-backward
      (char-to-string (char-syntax (char-before))))