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
fbcaad36
Commit
fbcaad36
authored
Apr 16, 2005
by
Dan Nicolaescu
Browse files
(cua-global-mark-face): Add special case
for displays supporting a high number of colors.
parent
ccb9871d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emulation/cua-base.el
lisp/emulation/cua-base.el
+2
-1
No files found.
lisp/ChangeLog
View file @
fbcaad36
2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
* emulation/cua-base.el (cua-global-mark-face): Add special case
for displays supporting a high number of colors.
2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
2005-04-16 Matt Hodges <MPHodges@member.fsf.org> (tiny change)
* repeat.el (repeat): Invoke pre-command-hook and
* repeat.el (repeat): Invoke pre-command-hook and
...
...
lisp/emulation/cua-base.el
View file @
fbcaad36
...
@@ -405,7 +405,8 @@ and after the region marked by the rectangle to search."
...
@@ -405,7 +405,8 @@ and after the region marked by the rectangle to search."
:group
'cua
)
:group
'cua
)
(
defface
cua-global-mark-face
(
defface
cua-global-mark-face
'
((((
class
color
))
:foreground
"black"
:background
"yellow"
)
'
((((
min-colors
88
)(
class
color
))
:foreground
"black"
:background
"yellow1"
)
(((
class
color
))
:foreground
"black"
:background
"yellow"
)
(
t
:bold
t
))
(
t
:bold
t
))
"*Font used by CUA for highlighting the global mark."
"*Font used by CUA for highlighting the global mark."
:group
'cua
)
:group
'cua
)
...
...
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