Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
fac580eb
Commit
fac580eb
authored
Jun 25, 2010
by
Chong Yidong
Browse files
Revert last change.
parent
a9fdbaae
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
16 deletions
+2
-16
lisp/ChangeLog
lisp/ChangeLog
+0
-6
lisp/frame.el
lisp/frame.el
+1
-2
src/ChangeLog
src/ChangeLog
+0
-6
src/frame.c
src/frame.c
+1
-2
No files found.
lisp/ChangeLog
View file @
fac580eb
2010-06-25 Chong Yidong <cyd@stupidchicken.com>
* frame.el (initial-frame-alist): Give default value entries for
menu-bar-lines and tool-bar-lines consistent with the startup
default (Bug#2249).
2010-06-25 Agustín Martín <agustin.martin@hispalinux.es>
* flyspell.el (flyspell-check-previous-highlighted-word): Make
...
...
lisp/frame.el
View file @
fac580eb
...
...
@@ -52,8 +52,7 @@ Parameters specified here supersede the values given in
;; The initial value given here used to ask for a minibuffer.
;; But that's not necessary, because the default is to have one.
;; By not specifying it here, we let an X resource specify it.
(
defcustom
initial-frame-alist
'
((
menu-bar-lines
.
1
)
(
tool-bar-lines
.
1
))
(
defcustom
initial-frame-alist
nil
"Alist of parameters for the initial X window frame.
You can set this in your init file; for example,
...
...
src/ChangeLog
View file @
fac580eb
2010-06-25 Chong Yidong <cyd@stupidchicken.com>
* frame.c (Vdefault_frame_alist): Give default value entries for
menu-bar-lines and tool-bar-lines consistent with the startup
default (Bug#2249).
2010-06-24 Juanma Barranquero <lekktu@gmail.com>
* gtkutil.c (xg_update_scrollbar_pos):
...
...
src/frame.c
View file @
fac580eb
...
...
@@ -4595,8 +4595,7 @@ For values specific to the separate minibuffer frame, see
The `menu-bar-lines' element of the list controls whether new frames
have menu bars; `menu-bar-mode' works by altering this element.
Setting this variable does not affect existing frames, only new ones. */
);
Vdefault_frame_alist = list2 (Fcons (Qmenu_bar_lines, make_number (1)),
Fcons (Qtool_bar_lines, make_number (1)));
Vdefault_frame_alist
=
Qnil
;
DEFVAR_LISP
(
"default-frame-scroll-bars"
,
&
Vdefault_frame_scroll_bars
,
doc:
/* Default position of scroll bars on this window-system. */
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment