diff options
| author | Richard M. Stallman | 1997-05-07 20:31:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-07 20:31:57 +0000 |
| commit | 8c44b2ad7aa1398bd1e9c0632b9bd34043e65295 (patch) | |
| tree | 866c7cc32c243bb510397f092c104f2cc7d64252 | |
| parent | bbc054a9ab126a8047202fb8109e8225a3c8c48a (diff) | |
| download | emacs-8c44b2ad7aa1398bd1e9c0632b9bd34043e65295.tar.gz emacs-8c44b2ad7aa1398bd1e9c0632b9bd34043e65295.zip | |
(printify-region): Doc fix.
| -rw-r--r-- | lisp/lpr.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/lpr.el b/lisp/lpr.el index e219e4bfa2a..a9054acd1c4 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el | |||
| @@ -187,9 +187,9 @@ The variable `lpr-page-header-program' specifies the program to use." | |||
| 187 | (cons (point-min) (point-max))))) | 187 | (cons (point-min) (point-max))))) |
| 188 | 188 | ||
| 189 | (defun printify-region (begin end) | 189 | (defun printify-region (begin end) |
| 190 | "Turn nonprinting characters (other than TAB, LF, SPC, RET, and FF) | 190 | "Replace nonprinting characters in region with printable representations. |
| 191 | in the current buffer into printable representations as control or | 191 | The printable representations use ^ (for ASCII control characters) or hex. |
| 192 | hexadecimal escapes." | 192 | The characters tab, linefeed, space, return and formfeed are not affected." |
| 193 | (interactive "r") | 193 | (interactive "r") |
| 194 | (save-excursion | 194 | (save-excursion |
| 195 | (goto-char begin) | 195 | (goto-char begin) |