1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(arch-rj): Fix typo in docstrings.

(arch-tocol): Likewise.  "?\ " -> "?\s".
This commit is contained in:
Juanma Barranquero 2005-07-20 17:13:43 +00:00
parent a5b5bf445f
commit ed6565df54

View File

@ -35,7 +35,7 @@
"Produces a string to skip to column TARGET. Prepends newline if needed.
The optional FILL should be a character, used to fill to the column."
(if (null fill)
(setq fill ? ))
(setq fill ?\s))
(if (< target (current-column))
(concat "\n" (make-string target fill))
(make-string (- target (current-column)) fill)))