(sh-prev-thing): Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Mon, 2 Oct 2006 08:51:40 +0000 (08:51 +0000)
committerEli Zaretskii <eliz@gnu.org>
Mon, 2 Oct 2006 08:51:40 +0000 (08:51 +0000)
lisp/ChangeLog
lisp/progmodes/sh-script.el

index 256b793..f6534c0 100644 (file)
@@ -1,3 +1,7 @@
+2006-10-02  Michael Welsh Duggan  <md5i@cs.cmu.edu>
+
+       * progmodes/sh-script.el (sh-prev-thing): Fix last change.
+
 2006-10-02  MIYOSHI Masanori <miyoshi@meadowy.org>  (tiny change)
 
        * mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in
index 4032c9c..089715b 100644 (file)
@@ -2472,8 +2472,8 @@ we go to the end of the previous line and do not check for continuations."
        (point))
        (skip-chars-backward " \t;")
        (unless (looking-at "\\s-*;;")
-       (skip-chars-backward "^)}];\"'`({[")
-       (setq c (char-before))
+         (skip-chars-backward "^)}];\"'`({[")
+         (setq c (char-before)))
        (sh-debug "stopping at %d c is %s  start=%d min-point=%d"
                  (point) c start min-point)
        (if (< (point) min-point)
@@ -2508,7 +2508,7 @@ we go to the end of the previous line and do not check for continuations."
          ;; c  -- return a string
          (char-to-string c)
          ))
-       )))))
+       ))))
 
 
 (defun sh-this-is-a-continuation ()