diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-06-03 05:58:08 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-06-03 05:58:08 +0000 |
commit | 328561fc91a2802b47ae9669110b8071e1696d4e (patch) | |
tree | 1d802fa6627dd3ea3b8bcf40e1186541d89a82df /lisp/emacs-lisp | |
parent | 5cd51471045769aa63048e989684828483cfd87d (diff) | |
download | emacs-328561fc91a2802b47ae9669110b8071e1696d4e.tar.gz emacs-328561fc91a2802b47ae9669110b8071e1696d4e.tar.bz2 emacs-328561fc91a2802b47ae9669110b8071e1696d4e.zip |
*** empty log message ***
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 6cf7253b443..f6fb07b0d2f 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -255,7 +255,7 @@ rigidly along with this one." (skip-chars-forward " \t") (if (looking-at "\\s<\\s<\\s<") ;; Don't alter indentation of a ;;; comment line. - nil + (goto-char (- (point-max) pos)) (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<"))) ;; Single-semicolon comment lines should be indented ;; as comment lines, not as code. |