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
f9914209
Commit
f9914209
authored
Dec 01, 2006
by
Vinicius Jose Latorre
Browse files
Fix the highlight overlay extension
parent
e1fb4a0b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/paren.el
lisp/paren.el
+2
-2
No files found.
lisp/ChangeLog
View file @
f9914209
...
...
@@ -4,6 +4,10 @@
2006-12-01 Vinicius Jose Latorre <viniciusjl@ig.com.br>
* paren.el: Fix the highlight overlay extension when the user types a
sequence of char very fast just after the open parenthesis.
Suggested by Ben North <ben@redfrontdoor.org>.
* ps-mule.el: Eliminate Emacs 20 compatibility.
* ps-print.el: Eliminate Emacs 20 & 21 compatibility.
lisp/paren.el
View file @
f9914209
...
...
@@ -220,7 +220,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time."
(
point
))))
(
if
show-paren-overlay-1
(
move-overlay
show-paren-overlay-1
from
to
(
current-buffer
))
(
setq
show-paren-overlay-1
(
make-overlay
from
to
)))
(
setq
show-paren-overlay-1
(
make-overlay
from
to
nil
t
)))
;; Always set the overlay face, since it varies.
(
overlay-put
show-paren-overlay-1
'priority
show-paren-priority
)
(
overlay-put
show-paren-overlay-1
'face
face
)))
...
...
@@ -243,7 +243,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time."
(
forward-point
(
-
dir
))))))
(
if
show-paren-overlay
(
move-overlay
show-paren-overlay
from
to
(
current-buffer
))
(
setq
show-paren-overlay
(
make-overlay
from
to
))))
(
setq
show-paren-overlay
(
make-overlay
from
to
nil
t
))))
;;
;; Always set the overlay face, since it varies.
(
overlay-put
show-paren-overlay
'priority
show-paren-priority
)
...
...
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