diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-09-01 21:23:17 +0000 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-09-01 21:23:17 +0000 |
| commit | 567e961e9ff78c1ef13f6890bb1b2a332115aac4 (patch) | |
| tree | c8702fc0c4cf7feb9ad31a25e50a085471b6e65d | |
| parent | e036e92051dcb004df92602db6d7a92f13aa94ce (diff) | |
| download | emacs-567e961e9ff78c1ef13f6890bb1b2a332115aac4.tar.gz | |
(comment-indent): Don't insert a fixed number of spaces.
| -rw-r--r-- | lisp/newcomment.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el index e52231ed44a..2a889e6a632 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -5,7 +5,7 @@ ;; Author: code extracted from Emacs-20's simple.el ;; Maintainer: Stefan Monnier <monnier@cs.yale.edu> ;; Keywords: comment uncomment -;; Revision: $Id: newcomment.el,v 1.32 2001/08/21 18:30:59 monnier Exp $ +;; Revision: $Id: newcomment.el,v 1.33 2001/09/01 21:19:45 monnier Exp $ ;; This file is part of GNU Emacs. @@ -446,10 +446,8 @@ If CONTINUE is non-nil, use the `comment-continue' markers if any." ;; If none, insert one. (save-excursion ;; Some comment-indent-function insist on not moving comments that - ;; are in column 0, so we insert a space to avoid this special - ;; case. The check for (zerop comment-column) is used for cases - ;; where we're called from comment-indent-new-line. - (unless (zerop comment-column) (insert " ")) + ;; are in column 0, so we first go to the likely target column. + (indent-to comment-column) (setq begpos (point)) (insert starter) (setq cpos (point-marker)) |
