diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-06-24 22:42:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-06-24 22:42:10 +0000 |
commit | d5a92c0640cfd8dda1fd53f793ae9afe723d4c5b (patch) | |
tree | 1c5efaf635c766ffd86445a9f6a5775a8a3f116c /lisp | |
parent | 4c2232bcb0053d986d52488dc0c38ae967d791e5 (diff) | |
download | emacs-d5a92c0640cfd8dda1fd53f793ae9afe723d4c5b.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/fill.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/fill.el b/lisp/textmodes/fill.el index ed46490174d..31626ccb0e9 100644 --- a/lisp/textmodes/fill.el +++ b/lisp/textmodes/fill.el @@ -71,10 +71,10 @@ From program, pass args FROM, TO and JUSTIFY-FLAG." (if (eolp) (forward-line 1)) ;; If paragraph has only one line, don't assume ;; that additional lines would have the same starting - ;; decoration. Instead, assume they would have white space - ;; reaching to the same column. - (re-search-forward adaptive-fill-regexp) - (setq fill-prefix (make-string (current-column) ?\ ))))) + ;; decoration. Assume no indentation. +;; (re-search-forward adaptive-fill-regexp) +;; (setq fill-prefix (make-string (current-column) ?\ )) + ))) (save-restriction (narrow-to-region from to) |