summaryrefslogtreecommitdiff
path: root/lisp/delim-col.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-07-04 01:53:04 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-07-04 01:53:04 +0000
commit0c5a1b51ed44edfd13c8429c9054dafe7f6e7724 (patch)
tree5d9974871e6cff17410ba370cd4fd5c4f1ae2e43 /lisp/delim-col.el
parenta6bd541a051795531f610761a09e19f7a54bffc0 (diff)
downloademacs-0c5a1b51ed44edfd13c8429c9054dafe7f6e7724.tar.gz
(columns): Finish `defgroup' description with period.
(delimit-columns-rectangle-line): "?\ " -> "?\s".
Diffstat (limited to 'lisp/delim-col.el')
-rw-r--r--lisp/delim-col.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/delim-col.el b/lisp/delim-col.el
index b5be7ff4ebc..04cd90961a1 100644
--- a/lisp/delim-col.el
+++ b/lisp/delim-col.el
@@ -125,7 +125,7 @@
;; User Options:
(defgroup columns nil
- "Prettify columns"
+ "Prettify columns."
:link '(emacs-library-link :tag "Source Lisp File" "delim-col.el")
:prefix "delimit-columns-"
:group 'internal)
@@ -424,13 +424,13 @@ START and END delimits the corners of text rectangle."
(and delimit-columns-format
(make-string (- (aref delimit-columns-max ncol)
(- (current-column) origin))
- ?\ )))
+ ?\s)))
(setq ncol (1+ ncol)))
;; Prepare last column spaces
(let ((spaces (and delimit-columns-format
(make-string (- (aref delimit-columns-max ncol)
(- (current-column) origin))
- ?\ ))))
+ ?\s))))
;; Adjust extra columns, if needed
(and delimit-columns-extra
(while (and (< (setq ncol (1+ ncol)) len)
@@ -438,7 +438,7 @@ START and END delimits the corners of text rectangle."
(delimit-columns-format spaces)
(setq spaces (and delimit-columns-format
(make-string (aref delimit-columns-max ncol)
- ?\ )))))
+ ?\s)))))
;; insert last formating
(cond ((null delimit-columns-format)
(insert delimit-columns-after delimit-columns-str-after))