+2005-08-09 Juanma Barranquero <lekktu@gmail.com>
+
+ * textmodes/fill.el (canonically-space-region)
+ (fill-context-prefix, fill-french-nobreak-p)
+ (fill-delete-newlines, fill-comment-paragraph)
+ (justify-current-line): "?\ " -> "?\s".
+
+2005-08-09 Ben North <ben@redfrontdoor.org> (tiny change)
+
+ * textmodes/fill.el (fill-nonuniform-paragraphs):
+ Improve argument/docstring consistency.
+
2005-08-09 Richard M. Stallman <rms@gnu.org>
* files.el (find-file-noselect): Don't call set-buffer-major-mode.
2005-08-09 Magnus Henoch <mange@freemail.hu>
- * textmodes/ispell.el (aspell-have-dictionaries): New variable.
+ * textmodes/ispell.el (aspell-have-dictionaries): New variable.
(aspell-find-dictionaries): New command.
(aspell-data-dir): New variable.
(aspell-find-data-dir): New function.
;; This is quick, but loses when a tab follows the end of a sentence.
;; Actually, it is difficult to tell that from "Mr.\tSmith".
;; Blame the typist.
- (subst-char-in-region beg end ?\t ?\ )
+ (subst-char-in-region beg end ?\t ?\s)
(while (and (< (point) end)
(re-search-forward end-spc-re end t))
(delete-region
(string-match comment-start-skip
first-line-prefix)))
first-line-prefix
- (make-string (string-width first-line-prefix) ?\ ))))
+ (make-string (string-width first-line-prefix) ?\s))))
;; But either way, reject it if it indicates the start
;; of a paragraph when text follows it.
(if (not (eq 0 (string-match paragraph-start
(backward-char 1)
(or (looking-at "[([{\e,A+\e,b+\e(B]")
;; Don't cut right after a single-letter word.
- (and (memq (preceding-char) '(?\t ?\ ))
+ (and (memq (preceding-char) '(?\t ?\s))
(eq (char-syntax (following-char)) ?w)))))))
(defcustom fill-nobreak-predicate nil
(sentence-end-without-space-list
(string-to-list sentence-end-without-space)))
(while (re-search-forward eol-double-space-re to t)
- (or (>= (point) to) (memq (char-before) '(?\t ?\ ))
+ (or (>= (point) to) (memq (char-before) '(?\t ?\s))
(memq (char-after (match-beginning 0))
sentence-end-without-space-list)
- (insert-and-inherit ?\ ))))
+ (insert-and-inherit ?\s))))
(goto-char from)
(if enable-multibyte-characters
(goto-char from)
(skip-chars-forward " \t")
;; Then change all newlines to spaces.
- (subst-char-in-region from to ?\n ?\ )
+ (subst-char-in-region from to ?\n ?\s)
(if (and nosqueeze (not (eq justify 'full)))
nil
(canonically-space-region (or squeeze-after (point)) to)
(if has-code-and-comment
(concat
(if (not indent-tabs-mode)
- (make-string (current-column) ?\ )
+ (make-string (current-column) ?\s)
(concat
(make-string (/ (current-column) tab-width) ?\t)
- (make-string (% (current-column) tab-width) ?\ )))
+ (make-string (% (current-column) tab-width) ?\s)))
(buffer-substring (point) comin))
(buffer-substring (line-beginning-position) comin))))
beg end)
(while (> count 0)
(skip-chars-forward " ")
(insert-and-inherit
- (make-string (/ curr-fracspace nspaces) ?\ ))
+ (make-string (/ curr-fracspace nspaces) ?\s))
(search-forward " " nil t)
(setq count (1- count)
curr-fracspace
When calling from a program, pass range to fill as first two arguments.
-Optional third and fourth arguments JUSTIFY and MAIL-FLAG:
-JUSTIFY to justify paragraphs (prefix arg),
+Optional third and fourth arguments JUSTIFYP and CITATION-REGEXP:
+JUSTIFYP to justify paragraphs (prefix arg).
When filling a mail message, pass a regexp for CITATION-REGEXP
which will match the prefix of a line which is a citation marker
plus whitespace, but no other kind of prefix.