]> git.eshelyaron.com Git - emacs.git/commitdiff
(indent-for-comment): move to beginning of line only
authorKarl Heuer <kwzh@gnu.org>
Mon, 29 May 1995 06:19:46 +0000 (06:19 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 29 May 1995 06:19:46 +0000 (06:19 +0000)
if there is a comment syntax.

lisp/simple.el

index 7f2e14b3505b05ef1e22c57145d44a43196fce2d..2c1c7cb53c59ed4d4d8322fd131b5787dd4934cc 100644 (file)
@@ -1992,7 +1992,6 @@ If nil, use `comment-end' instead.")
 (defun indent-for-comment ()
   "Indent this line's comment to comment column, or insert an empty comment."
   (interactive "*")
-  (beginning-of-line 1)
   (let* ((empty (save-excursion (beginning-of-line)
                                (looking-at "[ \t]*$")))
         (starter (or (and empty block-comment-start) comment-start))
@@ -2001,6 +2000,7 @@ If nil, use `comment-end' instead.")
        (error "No comment syntax defined")
       (let* ((eolpos (save-excursion (end-of-line) (point)))
             cpos indent begpos)
+       (beginning-of-line)
        (if (re-search-forward comment-start-skip eolpos 'move)
            (progn (setq cpos (point-marker))
                   ;; Find the start of the comment delimiter.