changeset 64015:d2af21b7c1a4

(lpr): Finish `defgroup' description with period. (printify-region): "?\ " -> "?\s".
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 04 Jul 2005 02:15:34 +0000
parents 29c6e26ca9a1
children a32551e9db34
files lisp/lpr.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/lpr.el	Mon Jul 04 02:14:13 2005 +0000
+++ b/lisp/lpr.el	Mon Jul 04 02:15:34 2005 +0000
@@ -41,7 +41,7 @@
 
 
 (defgroup lpr nil
-  "Print Emacs buffer on line printer"
+  "Print Emacs buffer on line printer."
   :group 'wp)
 
 
@@ -291,7 +291,7 @@
 	(while (re-search-forward "[\^@-\^h\^k\^n-\^_\177-\377]" nil t)
 	  (setq c (preceding-char))
 	  (delete-backward-char 1)
-	  (insert (if (< c ?\ )
+	  (insert (if (< c ?\s)
 		      (format "\\^%c" (+ c ?@))
 		    (format "\\%02x" c))))))))