aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2010-05-07 16:52:25 +0300
committerEli Zaretskii2010-05-07 16:52:25 +0300
commitc0162ade6f6f1300bdf087627f7d19afa480f1fc (patch)
treed1432a6097a2cf671e4771ef0ef0d5e9d4f96eaf /lisp
parentd16bdfc3a1e288643e340848d260bac6443cf445 (diff)
downloademacs-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/ChangeLog4
-rw-r--r--lisp/cus-start.el4
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 @@
12010-05-07 Eli Zaretskii <eliz@gnu.org>
2
3 * cus-start.el (all): Add native condition for tool-bar-* symbols.
4
12010-05-07 Christian von Roques <roques@mti.ag> (tiny change) 52010-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!