mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Repair mistake in a previous edmacro-sanitize-string change
* lisp/edmacro.el (edmacro-sanitize-for-string): This condition should not have been 'repaired' but removed altogether. Do so now, fixing bug#61647. Reported by Eduardo Ochs.
This commit is contained in:
parent
cac13e3605
commit
4eefadad06
1 changed files with 1 additions and 2 deletions
|
|
@ -626,8 +626,7 @@ The string represents the same events; Meta is indicated by bit 7.
|
|||
This function assumes that the events can be stored in a string."
|
||||
(setq seq (copy-sequence seq))
|
||||
(cl-loop for i below (length seq) do
|
||||
(when (/= (logand (aref seq i) 128) 0)
|
||||
(setf (aref seq i) (logand (aref seq i) 127))))
|
||||
(setf (aref seq i) (logand (aref seq i) 127)))
|
||||
seq)
|
||||
|
||||
;; These are needed in a --without-x build.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue