diff options
author | Thomas Fitzsimmons <fitzsim@fitzsim.org> | 2014-11-13 01:13:34 -0500 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@fitzsim.org> | 2014-11-13 01:13:34 -0500 |
commit | c8d2553bd424e45872a1fe4f94c8be291eea5dc1 (patch) | |
tree | 5262e89127f61973ba4366caa1e418f4feab235a /lisp/net/eudc.el | |
parent | fa9a3ca5364921612824fb8c4dc4125a0eb3d64a (diff) | |
download | emacs-c8d2553bd424e45872a1fe4f94c8be291eea5dc1.tar.gz emacs-c8d2553bd424e45872a1fe4f94c8be291eea5dc1.tar.bz2 emacs-c8d2553bd424e45872a1fe4f94c8be291eea5dc1.zip |
Ignore text properties in eudc-expand-inline
* net/eudc.el (eudc-expand-inline): Ignore text properties of
string-to-expand.
Diffstat (limited to 'lisp/net/eudc.el')
-rw-r--r-- | lisp/net/eudc.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/net/eudc.el b/lisp/net/eudc.el index e038b280979..54a41f02fb0 100644 --- a/lisp/net/eudc.el +++ b/lisp/net/eudc.el @@ -830,7 +830,8 @@ see `eudc-inline-expansion-servers'" (point-at-bol) 'move) (goto-char (match-end 0))) (point))) - (query-words (split-string (buffer-substring beg end) "[ \t]+")) + (query-words (split-string (buffer-substring-no-properties beg end) + "[ \t]+")) query-formats response response-string |