diff options
| author | Eli Zaretskii | 2012-05-25 13:35:13 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2012-05-25 13:35:13 +0300 |
| commit | b51d2e5a656eab4019916cce3a142c6e4d56ec88 (patch) | |
| tree | f7c1eeffaefa34a07afe898f32e19fc72977c2a0 /lisp | |
| parent | 9979ea1c6cb628840d060ee059b635b2f85fbda7 (diff) | |
| parent | f31237a47f4ac624db0660103a7b12b0b5f8640f (diff) | |
| download | emacs-b51d2e5a656eab4019916cce3a142c6e4d56ec88.tar.gz emacs-b51d2e5a656eab4019916cce3a142c6e4d56ec88.zip | |
Minor fixes for MSDOS build to track latest changes.
msdos/sed6.inp (INFO_EXT): Edit to .info.
(INFO_OPTS): Edit to --no-split.
lisp/cus-start.el <vertical-centering-font-regexp>: Avoid warning on
platforms that don't link in fontset.c.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cus-start.el | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4cd6f324956..2883420778f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-05-25 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * cus-start.el <vertical-centering-font-regexp>: Avoid warning on | ||
| 4 | platforms that don't link in fontset.c. | ||
| 5 | |||
| 1 | 2012-05-25 Juri Linkov <juri@jurta.org> | 6 | 2012-05-25 Juri Linkov <juri@jurta.org> |
| 2 | 7 | ||
| 3 | Use the same diff color scheme as in modern VCSes (bug#10181). | 8 | Use the same diff color scheme as in modern VCSes (bug#10181). |
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index fc3c6561a1e..3ea5f41db55 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -549,6 +549,10 @@ since it could result in memory overflow and make Emacs crash." | |||
| 549 | ;; the condition for loadup.el to preload tool-bar.el. | 549 | ;; the condition for loadup.el to preload tool-bar.el. |
| 550 | ((string-match "tool-bar-" (symbol-name symbol)) | 550 | ((string-match "tool-bar-" (symbol-name symbol)) |
| 551 | (fboundp 'x-create-frame)) | 551 | (fboundp 'x-create-frame)) |
| 552 | ((equal "vertical-centering-font-regexp" | ||
| 553 | (symbol-name symbol)) | ||
| 554 | ;; Any function from fontset.c will do. | ||
| 555 | (fboundp 'new-fontset)) | ||
| 552 | (t t)))) | 556 | (t t)))) |
| 553 | (if (not (boundp symbol)) | 557 | (if (not (boundp symbol)) |
| 554 | ;; If variables are removed from C code, give an error here! | 558 | ;; If variables are removed from C code, give an error here! |