]> git.eshelyaron.com Git - emacs.git/commitdiff
(columns): Finish `defgroup' description with period.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 01:53:04 +0000 (01:53 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 4 Jul 2005 01:53:04 +0000 (01:53 +0000)
(delimit-columns-rectangle-line): "?\ " -> "?\s".

lisp/delim-col.el

index b5be7ff4ebc9a2942fcae65035a2398c4c5abdb3..04cd90961a13c2ff76eea178bff62f2c76116c34 100644 (file)
 ;; 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))