mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-05 07:01:11 -08:00
(lpr): Finish `defgroup' description with period.
(printify-region): "?\ " -> "?\s".
This commit is contained in:
parent
7ae4587b12
commit
f93e905fd5
1 changed files with 2 additions and 2 deletions
|
|
@ -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 @@ The characters tab, linefeed, space, return and formfeed are not affected."
|
|||
(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))))))))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue