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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
4b43d418
Commit
4b43d418
authored
Nov 24, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(isearch-other-meta-char): Correct the test for a split-up
mode line or scroll bar mouse event.
parent
ec9d0f50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/isearch.el
lisp/isearch.el
+4
-2
No files found.
lisp/isearch.el
View file @
4b43d418
...
...
@@ -4,7 +4,7 @@
;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
;; |$Date: 1993/10/
09 20:03:33 $|$Revision: 1.51
$
;; |$Date: 1993/10/
24 04:05:22 $|$Revision: 1.52
$
;; This file is part of GNU Emacs.
...
...
@@ -1001,7 +1001,9 @@ and the meta character is unread so that it applies to editing the string."
(and (> (length key) 1)
(symbolp (aref key 0))
(listp (aref key 1))
(consp (posn-point (event-start (aref key 1))))
;; These events now have a symbol; they used to have a list.
;; Accept either one. Other events have a number here.
(not (numberp (posn-point (event-start (aref key 1)))))
(setq index 1))
;; If we got a mouse click, maybe it was read with the buffer
;; it was clicked on. If so, that buffer, not the current one,
...
...
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