[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/lpr.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/lpr.el |
Date: |
Sun, 03 Jul 2005 22:15:34 -0400 |
Index: emacs/lisp/lpr.el
diff -c emacs/lisp/lpr.el:1.65 emacs/lisp/lpr.el:1.66
*** emacs/lisp/lpr.el:1.65 Mon Sep 1 15:45:13 2003
--- emacs/lisp/lpr.el Mon Jul 4 02:15:34 2005
***************
*** 41,47 ****
(defgroup lpr nil
! "Print Emacs buffer on line printer"
:group 'wp)
--- 41,47 ----
(defgroup lpr nil
! "Print Emacs buffer on line printer."
:group 'wp)
***************
*** 291,297 ****
(while (re-search-forward "address@hidden" nil t)
(setq c (preceding-char))
(delete-backward-char 1)
! (insert (if (< c ?\ )
(format "\\^%c" (+ c ?@))
(format "\\%02x" c))))))))
--- 291,297 ----
(while (re-search-forward "address@hidden" nil t)
(setq c (preceding-char))
(delete-backward-char 1)
! (insert (if (< c ?\s)
(format "\\^%c" (+ c ?@))
(format "\\%02x" c))))))))
- [Emacs-diffs] Changes to emacs/lisp/lpr.el,
Juanma Barranquero <=