diff options
| author | Eli Zaretskii | 2010-05-07 16:52:25 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-05-07 16:52:25 +0300 |
| commit | c0162ade6f6f1300bdf087627f7d19afa480f1fc (patch) | |
| tree | d1432a6097a2cf671e4771ef0ef0d5e9d4f96eaf /lisp | |
| parent | d16bdfc3a1e288643e340848d260bac6443cf445 (diff) | |
| download | emacs-c0162ade6f6f1300bdf087627f7d19afa480f1fc.tar.gz emacs-c0162ade6f6f1300bdf087627f7d19afa480f1fc.zip | |
cus-start.el (all): Add native condition for tool-bar-* symbols.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/cus-start.el | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index df7d21c6124..1bced3edfdf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-05-07 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * cus-start.el (all): Add native condition for tool-bar-* symbols. | ||
| 4 | |||
| 1 | 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change) | 5 | 2010-05-07 Christian von Roques <roques@mti.ag> (tiny change) |
| 2 | 6 | ||
| 3 | * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592). | 7 | * lisp/epg.el (epg-key-capablity-alist): Add "D" flag (Bug#5592). |
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 07f7702e9d6..bc48aa88cc5 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -408,6 +408,10 @@ since it could result in memory overflow and make Emacs crash." | |||
| 408 | (fboundp 'define-fringe-bitmap)) | 408 | (fboundp 'define-fringe-bitmap)) |
| 409 | ((equal "font-use-system-font" (symbol-name symbol)) | 409 | ((equal "font-use-system-font" (symbol-name symbol)) |
| 410 | (featurep 'system-font-setting)) | 410 | (featurep 'system-font-setting)) |
| 411 | ;; Conditioned on x-create-frame, because that's | ||
| 412 | ;; the condition for loadup.el to preload tool-bar.el. | ||
| 413 | ((string-match "tool-bar-" (symbol-name symbol)) | ||
| 414 | (fboundp 'x-create-frame)) | ||
| 411 | (t t)))) | 415 | (t t)))) |
| 412 | (if (not (boundp symbol)) | 416 | (if (not (boundp symbol)) |
| 413 | ;; If variables are removed from C code, give an error here! | 417 | ;; If variables are removed from C code, give an error here! |