+2009-01-10 Martin Rudalics <rudalics@gmx.at>
+
+ * tool-bar.el (tool-bar-mode): Modify all frame parameters when
+ toggling tool bars on. (Bug#1754)
+
2009-01-09 Chong Yidong <cyd@stupidchicken.com>
* faces.el (face-valid-attribute-values): Use string as value for
:group 'frames
(if tool-bar-mode
(progn
- (dolist (frame (frame-list))
- (if (display-graphic-p frame)
- (set-frame-parameter frame 'tool-bar-lines 1)))
+ ;; Make one tool-bar-line for any - including non-graphical -
+ ;; terminal, see Bug#1754. If this causes problems, we should
+ ;; handle the problem in `modify-frame-parameters' or do not
+ ;; call `modify-all-frames-parameters' when toggling the tool
+ ;; bar off either.
+ (modify-all-frames-parameters (list (cons 'tool-bar-lines 1)))
(if (= 1 (length (default-value 'tool-bar-map))) ; not yet setup
(tool-bar-setup)))
(modify-all-frames-parameters (list (cons 'tool-bar-lines 0)))))