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
ed0fb1f1
Commit
ed0fb1f1
authored
Apr 12, 2005
by
Jan Djärv
Browse files
Added new X reosurce, cursorBlink.
parent
b7461be9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
1 deletion
+30
-1
etc/ChangeLog
etc/ChangeLog
+4
-0
etc/NEWS
etc/NEWS
+3
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/startup.el
lisp/startup.el
+10
-1
man/ChangeLog
man/ChangeLog
+4
-0
man/xresources.texi
man/xresources.texi
+4
-0
No files found.
etc/ChangeLog
View file @
ed0fb1f1
2005-04-12 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* NEWS: Mention cursorBlink resource.
2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* NEWS: Mention dynamic change of keyboard-coding-system on Mac.
...
...
etc/NEWS
View file @
ed0fb1f1
...
...
@@ -967,6 +967,9 @@ speed up Emacs with slow networking to the X server.
If the configure option `--without-xim' was used to turn off use of
XIM by default, the X resource useXIM can be used to turn it on.
+++
** The X resource cursorBlink can be used to turn off cursor blinking.
+++
** `undo-only' does an undo which does not redo any previous undo.
...
...
lisp/ChangeLog
View file @
ed0fb1f1
2005-04-12 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* startup.el (command-line): Turn off blinking cursor if
cursorBlink in resources is off or false.
2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* term/mac-win.el (dnd): Require dnd.
...
...
lisp/startup.el
View file @
ed0fb1f1
...
...
@@ -714,10 +714,19 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
(
and
command-line-args
(
setcdr
command-line-args
args
)))
;; Under X Window
s
, this creates the X frame and deletes the terminal frame.
;; Under X Window, this creates the X frame and deletes the terminal frame.
(
when
(
fboundp
'frame-initialize
)
(
frame-initialize
))
;; Turn off blinking cursor if so specified in X resources. This is here
;; only because all other settings of no-blinking-cursor is here.
(
unless
(
or
noninteractive
emacs-basic-display
(
and
(
memq
window-system
'
(
x
w32
mac
))
(
not
(
member
(
x-get-resource
"cursorBlink"
"CursorBlink"
)
'
(
"off"
"false"
)))))
(
setq
no-blinking-cursor
t
))
;; If frame was created with a menu bar, set menu-bar-mode on.
(
unless
(
or
noninteractive
emacs-basic-display
...
...
man/ChangeLog
View file @
ed0fb1f1
2005-04-12 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xresources.texi (Table of Resources): Add cursorBlink.
2005-04-11 Luc Teirlinck <teirllm@auburn.edu>
* rmail.texi (Rmail Summary Edit): Explain numeric arguments to
...
...
man/xresources.texi
View file @
ed0fb1f1
...
...
@@ -175,6 +175,10 @@ Width in pixels of the external border.
@item @code{cursorColor} (class @code{Foreground})
Color name for text cursor (point).
@item @code{cursorBlink} (class @code{CursorBlink})
Specifies whether to make the cursor blink. The default is @samp{on}. Use
@samp{off} or @samp{false} to turn cursor blinking off.
@item @code{font} (class @code{Font})
Font name for text (or fontset name, @pxref{Fontsets}).
...
...
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