diff options
| author | Vinicius Jose Latorre | 2006-09-20 20:00:03 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2006-09-20 20:00:03 +0000 |
| commit | 502ca00a6b02697c6e7c1ce057ebbd59c4b1c01c (patch) | |
| tree | 24b173a546f193364f1d18673bdc4289c8f4981c | |
| parent | 63381c91ed369650222f9e76119fdd7d77aa0ea9 (diff) | |
| download | emacs-502ca00a6b02697c6e7c1ce057ebbd59c4b1c01c.tar.gz emacs-502ca00a6b02697c6e7c1ce057ebbd59c4b1c01c.zip | |
Adjust X-URL
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/lpr.el | 2 | ||||
| -rw-r--r-- | lisp/printing.el | 6 | ||||
| -rw-r--r-- | lisp/progmodes/ebnf2ps.el | 4 | ||||
| -rw-r--r-- | lisp/ps-print.el | 2 |
5 files changed, 20 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c20774d995d..3cdf01da119 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2006-09-20 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 2 | |||
| 3 | * delim-col.el : Fix X-URL comment. | ||
| 4 | |||
| 5 | * printing.el : Fix X-URL comment. | ||
| 6 | |||
| 7 | * ps-print.el : Fix X-URL comment. | ||
| 8 | |||
| 9 | * progmodes/ebnf2ps.el : Fix X-URL comment. | ||
| 10 | |||
| 11 | * lpr.el (lpr-page-header-switches): Insert `*' at beginning of comment | ||
| 12 | to become an option. | ||
| 13 | |||
| 1 | 2006-09-20 Stefan Monnier <monnier@iro.umontreal.ca> | 14 | 2006-09-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 15 | ||
| 3 | * files.el (find-buffer-visiting): Don't get fooled by a nil inode. | 16 | * files.el (find-buffer-visiting): Don't get fooled by a nil inode. |
diff --git a/lisp/lpr.el b/lisp/lpr.el index dd39eb24349..2c2e8c872c4 100644 --- a/lisp/lpr.el +++ b/lisp/lpr.el | |||
| @@ -141,7 +141,7 @@ See definition of `print-region-1' for calling conventions." | |||
| 141 | ;; Berkeley systems support -F, and GNU pr supports both -f and -F, | 141 | ;; Berkeley systems support -F, and GNU pr supports both -f and -F, |
| 142 | ;; So it looks like -F is a better default. | 142 | ;; So it looks like -F is a better default. |
| 143 | (defcustom lpr-page-header-switches '("-h %s" "-F") | 143 | (defcustom lpr-page-header-switches '("-h %s" "-F") |
| 144 | "List of strings to use as options for the page-header-generating program. | 144 | "*List of strings to use as options for the page-header-generating program. |
| 145 | If `%s' appears in one of the strings, it is substituted by the page title. | 145 | If `%s' appears in one of the strings, it is substituted by the page title. |
| 146 | The variable `lpr-page-header-program' specifies the program to use." | 146 | The variable `lpr-page-header-program' specifies the program to use." |
| 147 | :type '(repeat string) | 147 | :type '(repeat string) |
diff --git a/lisp/printing.el b/lisp/printing.el index 94be3dfbfab..18252155e49 100644 --- a/lisp/printing.el +++ b/lisp/printing.el | |||
| @@ -5,10 +5,10 @@ | |||
| 5 | 5 | ||
| 6 | ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> | 6 | ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 7 | ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> | 7 | ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 8 | ;; Time-stamp: <2006-02-06 15:06:40 ttn> | 8 | ;; Time-stamp: <2006/09/15 18:53:14 vinicius> |
| 9 | ;; Keywords: wp, print, PostScript | 9 | ;; Keywords: wp, print, PostScript |
| 10 | ;; Version: 6.8.4 | 10 | ;; Version: 6.8.4 |
| 11 | ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ | 11 | ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre |
| 12 | 12 | ||
| 13 | (defconst pr-version "6.8.4" | 13 | (defconst pr-version "6.8.4" |
| 14 | "printing.el, v 6.8.4 <2005/06/11 vinicius> | 14 | "printing.el, v 6.8.4 <2005/06/11 vinicius> |
| @@ -2799,7 +2799,7 @@ See `pr-ps-printer-alist'.") | |||
| 2799 | 2799 | ||
| 2800 | 2800 | ||
| 2801 | (defalias 'pr-get-symbol | 2801 | (defalias 'pr-get-symbol |
| 2802 | (if (fboundp 'easy-menu-intern) | 2802 | (if (fboundp 'easy-menu-intern) ; hacked from easymenu.el |
| 2803 | 'easy-menu-intern | 2803 | 'easy-menu-intern |
| 2804 | (lambda (s) (if (stringp s) (intern s) s)))) | 2804 | (lambda (s) (if (stringp s) (intern s) s)))) |
| 2805 | 2805 | ||
diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el index bce4381c614..5cde775acc5 100644 --- a/lisp/progmodes/ebnf2ps.el +++ b/lisp/progmodes/ebnf2ps.el | |||
| @@ -5,10 +5,10 @@ | |||
| 5 | 5 | ||
| 6 | ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> | 6 | ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 7 | ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> | 7 | ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 8 | ;; Time-stamp: <2005-09-18 07:27:20 deego> | 8 | ;; Time-stamp: <2006/09/15 18:58:18 vinicius> |
| 9 | ;; Keywords: wp, ebnf, PostScript | 9 | ;; Keywords: wp, ebnf, PostScript |
| 10 | ;; Version: 4.2 | 10 | ;; Version: 4.2 |
| 11 | ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ | 11 | ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre |
| 12 | 12 | ||
| 13 | ;; This file is part of GNU Emacs. | 13 | ;; This file is part of GNU Emacs. |
| 14 | 14 | ||
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 5307e1bf97c..32f2b881890 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | ;; Keywords: wp, print, PostScript | 12 | ;; Keywords: wp, print, PostScript |
| 13 | ;; Time-stamp: <2005/06/27 00:57:22 vinicius> | 13 | ;; Time-stamp: <2005/06/27 00:57:22 vinicius> |
| 14 | ;; Version: 6.6.7 | 14 | ;; Version: 6.6.7 |
| 15 | ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ | 15 | ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre |
| 16 | 16 | ||
| 17 | (defconst ps-print-version "6.6.7" | 17 | (defconst ps-print-version "6.6.7" |
| 18 | "ps-print.el, v 6.6.7 <2005/06/27 vinicius> | 18 | "ps-print.el, v 6.6.7 <2005/06/27 vinicius> |