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 | |
| 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.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cus-start.el | 4 | ||||
| -rw-r--r-- | msdos/ChangeLog | 5 | ||||
| -rw-r--r-- | msdos/sed6.inp | 2 |
4 files changed, 16 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! |
diff --git a/msdos/ChangeLog b/msdos/ChangeLog index 2b56315c1a3..ae72d182803 100644 --- a/msdos/ChangeLog +++ b/msdos/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-05-25 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * sed6.inp (INFO_EXT): Edit to .info. | ||
| 4 | (INFO_OPTS): Edit to --no-split. | ||
| 5 | |||
| 1 | 2012-05-22 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-05-22 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Remove src/m/*. | 8 | Remove src/m/*. |
diff --git a/msdos/sed6.inp b/msdos/sed6.inp index 6d44f995307..22052140b82 100644 --- a/msdos/sed6.inp +++ b/msdos/sed6.inp | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | /^srcdir *=/s/@[^@\n]*@/./ | 19 | /^srcdir *=/s/@[^@\n]*@/./ |
| 20 | /^VPATH *=/s/@[^@\n]*@/./ | 20 | /^VPATH *=/s/@[^@\n]*@/./ |
| 21 | /^MAKEINFO *=/s/@[^@\n]*@/makeinfo/ | 21 | /^MAKEINFO *=/s/@[^@\n]*@/makeinfo/ |
| 22 | /^INFO_EXT *=/s/@[^@\n]*@/.info/ | ||
| 23 | /^INFO_OPTS *=/s/@[^@\n]*@/--no-split/ | ||
| 22 | /^ENVADD/,/^$/c\ | 24 | /^ENVADD/,/^$/c\ |
| 23 | ENVADD =\ | 25 | ENVADD =\ |
| 24 | export TEXINPUTS := $(srcdir)";"$(TEXINPUTS)\ | 26 | export TEXINPUTS := $(srcdir)";"$(TEXINPUTS)\ |