diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/faces.el | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 42f2354889a..b13f1b48c4c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-10-04 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2008-10-04 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * faces.el (x-create-frame-with-faces): Only setup the toolbar if | ||
| 4 | tool-bar-mode is on. | ||
| 5 | |||
| 3 | * vc-svn.el (vc-svn-dir-status-files): | 6 | * vc-svn.el (vc-svn-dir-status-files): |
| 4 | * vc-cvs.el (vc-cvs-dir-status-files): New function. | 7 | * vc-cvs.el (vc-cvs-dir-status-files): New function. |
| 5 | 8 | ||
diff --git a/lisp/faces.el b/lisp/faces.el index 269a90972c0..e9bc6b05fd1 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -2007,7 +2007,8 @@ Value is the new frame created." | |||
| 2007 | ;; Make sure the tool-bar is ready to be enabled. The | 2007 | ;; Make sure the tool-bar is ready to be enabled. The |
| 2008 | ;; `tool-bar-lines' frame parameter will not take effect | 2008 | ;; `tool-bar-lines' frame parameter will not take effect |
| 2009 | ;; without this call. | 2009 | ;; without this call. |
| 2010 | (tool-bar-setup frame) | 2010 | (when tool-bar-mode |
| 2011 | (tool-bar-setup frame)) | ||
| 2011 | (if (null visibility-spec) | 2012 | (if (null visibility-spec) |
| 2012 | (make-frame-visible frame) | 2013 | (make-frame-visible frame) |
| 2013 | (modify-frame-parameters frame (list visibility-spec))) | 2014 | (modify-frame-parameters frame (list visibility-spec))) |