diff options
| author | Vinicius Jose Latorre | 2007-03-01 20:02:32 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2007-03-01 20:02:32 +0000 |
| commit | 073238d68c9a1dca2ae55cf514d82ac30ec769e8 (patch) | |
| tree | 30a6d1963ef64c4790d851d276accd407d31415b | |
| parent | d3241651a889514d1b4b51ab598ab7eaf5100558 (diff) | |
| download | emacs-073238d68c9a1dca2ae55cf514d82ac30ec769e8.tar.gz emacs-073238d68c9a1dca2ae55cf514d82ac30ec769e8.zip | |
Comment fix.
| -rw-r--r-- | lisp/ps-print.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index c91f2bf9c0a..4762f5173c3 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el | |||
| @@ -3338,13 +3338,13 @@ It's like the very first character of buffer (or region) is ^L (\\014)." | |||
| 3338 | 3338 | ||
| 3339 | (defcustom ps-postscript-code-directory | 3339 | (defcustom ps-postscript-code-directory |
| 3340 | (or (if (featurep 'xemacs) | 3340 | (or (if (featurep 'xemacs) |
| 3341 | (cond ((fboundp 'locate-data-directory) ; xemacs | 3341 | (cond ((fboundp 'locate-data-directory) ; XEmacs |
| 3342 | (locate-data-directory "ps-print")) | 3342 | (locate-data-directory "ps-print")) |
| 3343 | ((boundp 'data-directory) ; xemacs | 3343 | ((boundp 'data-directory) ; XEmacs |
| 3344 | data-directory) | 3344 | data-directory) |
| 3345 | (t ; don't know what to do | 3345 | (t ; don't know what to do |
| 3346 | nil)) | 3346 | nil)) |
| 3347 | data-directory) ; emacs | 3347 | data-directory) ; Emacs |
| 3348 | (error "`ps-postscript-code-directory' isn't set properly")) | 3348 | (error "`ps-postscript-code-directory' isn't set properly")) |
| 3349 | "*Directory where it's located the PostScript prologue file used by ps-print. | 3349 | "*Directory where it's located the PostScript prologue file used by ps-print. |
| 3350 | By default, this directory is the same as in the variable `data-directory'." | 3350 | By default, this directory is the same as in the variable `data-directory'." |