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
9c481732
Commit
9c481732
authored
May 26, 1994
by
Karl Heuer
Browse files
(ws-search): Fix malformed character constants.
parent
235c56d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/emulation/ws-mode.el
lisp/emulation/ws-mode.el
+2
-2
No files found.
lisp/emulation/ws-mode.el
View file @
9c481732
...
...
@@ -646,12 +646,12 @@ in ws-last-errormessage for recovery with C-q w."
(
message
"Forward (f) or backward (b)"
)
(
let
((
direction
(
read-char
)))
(
cond
((
equal
(
upcase
direction
)
\070
)
(
cond
((
equal
(
upcase
direction
)
?F
)
(
setq
ws-search-string
string
)
(
setq
ws-search-direction
t
)
(
setq
ws-last-cursorposition
(
point-marker
))
(
search-forward
string
))
((
equal
(
upcase
direction
)
\066
)
((
equal
(
upcase
direction
)
?B
)
(
setq
ws-search-string
string
)
(
setq
ws-search-direction
nil
)
(
setq
ws-last-cursorposition
(
point-marker
))
...
...
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