diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-05-01 13:04:44 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-05-01 13:04:44 -0400 |
commit | 788694d026b401715330576633a98542623978ff (patch) | |
tree | 56d5d20b4b5fe0556c227fff5af6e1d30517a8fd /lisp/minibuffer.el | |
parent | 9370a4763aacbb9278b5be9c92a2484e3652bc29 (diff) | |
download | emacs-788694d026b401715330576633a98542623978ff.tar.gz emacs-788694d026b401715330576633a98542623978ff.tar.bz2 emacs-788694d026b401715330576633a98542623978ff.zip |
* lisp/minibuffer.el (completion--replace): Fix bug#55205
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index ef71b4e6be6..fb473cf71b0 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -1140,6 +1140,7 @@ Moves point to the end of the new text." ;; The properties on `newtext' include things like the ;; `completions-first-difference' face, which we don't want to ;; include upon insertion. + (setq newtext (copy-sequence newtext)) ;Don't modify the arg by side-effect. (if minibuffer-allow-text-properties ;; If we're preserving properties, then just remove the faces ;; and other properties added by the completion machinery. |