diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-07-16 12:23:00 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-07-16 12:23:00 +0000 |
commit | cafd54559f59b7fa33a3402c449b1191e2e81c76 (patch) | |
tree | 0dc682013d7ddbb04a8f03b2ee4ec1bb919067d0 /lisp/ps-print.el | |
parent | f22a19c6ad181bd8e8d22a57991472c4b09594c3 (diff) | |
download | emacs-cafd54559f59b7fa33a3402c449b1191e2e81c76.tar.gz |
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/ps-print.el')
-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 dce8bda7e37..515bf134427 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -3597,7 +3597,7 @@ It can be retrieved with `(ps-get ALIST-SYM KEY)'." ((fboundp 'x-color-values) (ps-e-x-color-values x-color)) (t - (error "No available function to determine X color values.")))) + (error "No available function to determine X color values")))) (defalias 'ps-face-foreground-name 'face-foreground) (defalias 'ps-face-background-name 'face-background) @@ -3630,7 +3630,7 @@ It can be retrieved with `(ps-get ALIST-SYM KEY)'." x-color (ps-x-make-color-instance color)))) (t - (error "No available function to determine X color values."))))) + (error "No available function to determine X color values"))))) (defun ps-face-foreground-name (face) (ps-xemacs-color-name (face-foreground face))) @@ -3676,7 +3676,7 @@ Note: No major/minor-mode is activated and no local variables are evaluated for (with-temp-buffer (insert-file-contents filename) (buffer-string)) - (error "ps-print PostScript prologue `%s' file was not found." + (error "ps-print PostScript prologue `%s' file was not found" filename)))) |