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
63b98362
Commit
63b98362
authored
May 30, 1998
by
Karl Heuer
Browse files
(viper-skip-syntax): Bug fix for eob/bob cases.
parent
6d459c4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/emulation/viper-util.el
lisp/emulation/viper-util.el
+4
-1
No files found.
lisp/emulation/viper-util.el
View file @
63b98362
...
...
@@ -1295,7 +1295,10 @@ This option is appropriate if you like Emacs-style words."
(
t
nil
)))
(
if
(
memq
?^
syntax
)
(
setq
negated-syntax
t
))
(
while
(
and
(
not
(
=
local
0
))
(
not
(
eobp
)))
(
while
(
and
(
not
(
=
local
0
))
(
cond
((
eq
direction
'forward
)
(
not
(
eobp
)))
(
t
(
not
(
bobp
)))))
(
setq
char-looked-at
(
viper-char-at-pos
direction
)
;; if outside the range, set to nil
syntax-of-char-looked-at
(
if
char-looked-at
...
...
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