Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6b0f9bdf
Commit
6b0f9bdf
authored
Dec 21, 1997
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(isearch-mode-map): Don't count above 256
when setting up printing characters.
parent
3b4490b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/isearch.el
lisp/isearch.el
+2
-2
No files found.
lisp/isearch.el
View file @
6b0f9bdf
...
...
@@ -246,9 +246,9 @@ Default value, nil, means edit the string instead."
(
define-key
map
(
make-string
1
i
)
'isearch-other-control-char
)
(
setq
i
(
1+
i
)))
;;
P
rinting chars extend the search string by default.
;;
Single-byte p
rinting chars extend the search string by default.
(
setq
i
?\
)
(
while
(
<
i
(
length
(
nth
1
map
))
)
(
while
(
<
i
256
)
(
define-key
map
(
vector
i
)
'isearch-printing-char
)
(
setq
i
(
1+
i
)))
...
...
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