[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/hi-lock.el,v
From: |
Juri Linkov |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/hi-lock.el,v |
Date: |
Tue, 29 Jul 2008 14:45:01 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Juri Linkov <jurta> 08/07/29 14:45:01
Index: hi-lock.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/hi-lock.el,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -b -r1.52 -r1.53
--- hi-lock.el 30 Jun 2008 19:36:38 -0000 1.52
+++ hi-lock.el 29 Jul 2008 14:45:01 -0000 1.53
@@ -398,7 +398,8 @@
\(See info node `Minibuffer History'.)"
(interactive
(list
- (hi-lock-regexp-okay (read-regexp "Regexp to highlight line"))
+ (hi-lock-regexp-okay
+ (read-regexp "Regexp to highlight line" (car regexp-history)))
(hi-lock-read-face-name)))
(or (facep face) (setq face 'hi-yellow))
(unless hi-lock-mode (hi-lock-mode 1))
@@ -421,7 +422,8 @@
\(See info node `Minibuffer History'.)"
(interactive
(list
- (hi-lock-regexp-okay (read-regexp "Regexp to highlight"))
+ (hi-lock-regexp-okay
+ (read-regexp "Regexp to highlight" (car regexp-history)))
(hi-lock-read-face-name)))
(or (facep face) (setq face 'hi-yellow))
(unless hi-lock-mode (hi-lock-mode 1))
@@ -439,7 +441,7 @@
(list
(hi-lock-regexp-okay
(hi-lock-process-phrase
- (read-regexp "Phrase to highlight")))
+ (read-regexp "Phrase to highlight" (car regexp-history))))
(hi-lock-read-face-name)))
(or (facep face) (setq face 'hi-yellow))
(unless hi-lock-mode (hi-lock-mode 1))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/lisp/hi-lock.el,v,
Juri Linkov <=