Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c2079f0a
Commit
c2079f0a
authored
May 04, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(frame-initialize): Delete the code for reverse-video.
x-create-frame-with-faces takes care of that.
parent
5fd22298
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
23 deletions
+1
-23
lisp/frame.el
lisp/frame.el
+1
-23
No files found.
lisp/frame.el
View file @
c2079f0a
...
...
@@ -136,29 +136,7 @@ These supersede the values given in `default-frame-alist'.")
;; It would be wrong to reapply them then,
;; because that would override explicit user resizing.
(
setq
initial-frame-alist
(
frame-remove-geometry-params
initial-frame-alist
))
;; Handle `reverse' as a parameter.
(
if
(
cdr
(
or
(
assq
'reverse
initial-frame-alist
)
(
assq
'reverse
default-frame-alist
)
(
cons
nil
(
member
(
x-get-resource
"reverseVideo"
"ReverseVideo"
)
'
(
"on"
"true"
)))))
(
let
((
params
(
frame-parameters
frame-initial-frame
)))
(
modify-frame-parameters
frame-initial-frame
;; Must set cursor-color after background color.
;; So put it first.
(
list
(
cons
'cursor-color
(
cdr
(
assq
'background-color
params
)))
(
cons
'foreground-color
(
cdr
(
assq
'background-color
params
)))
(
cons
'background-color
(
cdr
(
assq
'foreground-color
params
)))
(
cons
'mouse-color
(
cdr
(
assq
'background-color
params
)))
(
cons
'border-color
(
cdr
(
assq
'background-color
params
)))))))))
(
frame-remove-geometry-params
initial-frame-alist
))))
;; At this point, we know that we have a frame open, so we
;; can delete the terminal frame.
(
delete-frame
terminal-frame
)
...
...
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