1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-14 16:50:58 +00:00

(columns): Finish `defgroup' description with period.

(delimit-columns-rectangle-line): "?\ " -> "?\s".
This commit is contained in:
Juanma Barranquero 2005-07-04 01:53:04 +00:00
parent a6bd541a05
commit 0c5a1b51ed

View File

@ -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))