diff options
| author | Vinicius Jose Latorre | 2007-03-09 03:30:57 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2007-03-09 03:30:57 +0000 |
| commit | d73d5c1ca40c08984353d1a78bfaa2e15bd8b23c (patch) | |
| tree | 309fdaaa61bc8c0e3ce042b0eda7a9a360acaff5 | |
| parent | 374b7675679693f614285ffe9c73b8f0ed0a3921 (diff) | |
| download | emacs-d73d5c1ca40c08984353d1a78bfaa2e15bd8b23c.tar.gz emacs-d73d5c1ca40c08984353d1a78bfaa2e15bd8b23c.zip | |
Tiny definition change.
| -rw-r--r-- | lisp/ChangeLog.unicode | 6 | ||||
| -rw-r--r-- | lisp/ps-def.el | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog.unicode b/lisp/ChangeLog.unicode index 23478c38253..d5c02347e7f 100644 --- a/lisp/ChangeLog.unicode +++ b/lisp/ChangeLog.unicode | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2007-03-09 Vinicius Jose Latorre <viniciusjl@ig.com.br> | ||
| 2 | |||
| 3 | * ps-def.el (installation-directory): Must be initialized when defining | ||
| 4 | it in XEmacs. | ||
| 5 | (coding-system-for-read): Eliminate duplicated definition. | ||
| 6 | |||
| 1 | 2007-03-05 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 7 | 2007-03-05 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
| 2 | 8 | ||
| 3 | * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil). | 9 | * ps-print.el: Replace some (defvar VAR) by (defvar VAR nil). |
diff --git a/lisp/ps-def.el b/lisp/ps-def.el index d2095352d8f..547939ef32e 100644 --- a/lisp/ps-def.el +++ b/lisp/ps-def.el | |||
| @@ -46,7 +46,7 @@ | |||
| 46 | ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 46 | ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 47 | ;; ps-bdf | 47 | ;; ps-bdf |
| 48 | 48 | ||
| 49 | (defvar installation-directory) | 49 | (defvar installation-directory nil) |
| 50 | (defvar coding-system-for-read) | 50 | (defvar coding-system-for-read) |
| 51 | 51 | ||
| 52 | 52 | ||
| @@ -207,7 +207,6 @@ | |||
| 207 | 207 | ||
| 208 | ;; to avoid XEmacs compilation gripes | 208 | ;; to avoid XEmacs compilation gripes |
| 209 | (defvar coding-system-for-write) | 209 | (defvar coding-system-for-write) |
| 210 | (defvar coding-system-for-read) | ||
| 211 | (defvar buffer-file-coding-system) | 210 | (defvar buffer-file-coding-system) |
| 212 | 211 | ||
| 213 | 212 | ||