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
f7df88f4
Commit
f7df88f4
authored
Apr 09, 2003
by
Juanma Barranquero
Browse files
(new-frame): Add obsolescence declaration.
parent
034ade66
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
lisp/ChangeLog
lisp/ChangeLog
+13
-2
lisp/frame.el
lisp/frame.el
+1
-1
No files found.
lisp/ChangeLog
View file @
f7df88f4
2003-04-09 Juanma Barranquero <lektu@terra.es>
* frame.el (new-frame): Add obsolescence declaration.
2003-04-09 Ehud Karni <ehud@unix.mvs.co.il>
* frame.el (set-frame-font): Allow keeping frame size after
changing font.
(modify-all-frames-parameters): New function to change parameters
in all existing and future frames.
2003-04-09 Thien-Thi Nguyen <ttn@gnu.org>
* man.el (Man-heading-regexp): Accept hyphen.
...
...
@@ -69,7 +80,7 @@
(mule-utf-16): New coding systems.
(utf-16-le-with-signature, utf-16-be-with-signature),
(utf-16): Aliases of the above coding systems.
2003-04-08 Martin Stjernholm <bug-cc-mode@gnu.org>
* progmodes/cc-langs.el (c-symbol-key): Use POSIX char classes
...
...
@@ -128,7 +139,7 @@
locals -> desktop-buffer-locals
(desktop-buffer-major-mode, desktop-buffer-file-name)
(desktop-buffer-name): Unused customizable variables deleted.
(desktop-buffer-misc): Unused variable deleted.
(desktop-buffer-misc): Unused variable deleted.
(desktop-save, desktop-buffer-dired-misc-data):
Use `desktop-file-name'.
(desktop-path): New customizable variable. List of directories in
...
...
lisp/frame.el
View file @
f7df88f4
...
...
@@ -576,6 +576,7 @@ The functions are run with one arg, the newly created frame.")
;; Alias, kept temporarily.
(
defalias
'new-frame
'make-frame
)
(
make-obsolete
'new-frame
'make-frame
"21.4"
)
(
defun
make-frame
(
&optional
parameters
)
"Return a newly created frame displaying the current buffer.
...
...
@@ -1139,7 +1140,6 @@ left untouched. FRAME nil or omitted means use the selected frame."
(
when
(
eq
(
frame-parameter
frame
'minibuffer
)
'only
)
(
delete-frame
frame
)))))
(
make-obsolete
'screen-height
'frame-height
)
;before 19.15
(
make-obsolete
'screen-width
'frame-width
)
;before 19.15
(
make-obsolete
'set-screen-width
'set-frame-width
)
;before 19.15
...
...
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