# HG changeset patch # User Juanma Barranquero # Date 1120441984 0 # Node ID bf6ae7cf12eb9c177024e0691daf88f5bd10704f # Parent 47749dcdbecfe39fc85aca417b38cba8b82f1147 (columns): Finish `defgroup' description with period. (delimit-columns-rectangle-line): "?\ " -> "?\s". diff -r 47749dcdbecf -r bf6ae7cf12eb lisp/delim-col.el --- a/lisp/delim-col.el Mon Jul 04 01:51:25 2005 +0000 +++ b/lisp/delim-col.el Mon Jul 04 01:53:04 2005 +0000 @@ -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 @@ (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 @@ (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))