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
2d7bfcc3
Commit
2d7bfcc3
authored
Jul 27, 1993
by
Richard M. Stallman
Browse files
(iconify-or-deiconify-frame): New function. Use it for C-z.
parent
c6e5e6e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
lisp/term/x-win.el
lisp/term/x-win.el
+9
-1
No files found.
lisp/term/x-win.el
View file @
2d7bfcc3
...
...
@@ -459,7 +459,15 @@ This returns ARGS with the arguments that have been processed removed."
;;;; Function keys
(
substitute-key-definition
'suspend-emacs
'iconify-frame
global-map
)
(
defun
iconify-or-deiconify-frame
()
"Iconify the selected frame, or deiconify if it's currently an icon."
(
interactive
)
(
if
(
eq
(
cdr
(
assq
'visibility
(
frame-parameters
)))
t
)
(
iconify-frame
)
(
make-frame-visible
)))
(
substitute-key-definition
'suspend-emacs
'iconify-or-deiconify-frame
global-map
)
;; Map certain keypad keys into ASCII characters
;; that people usually expect.
...
...
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