>From 4e4e853959e891429d8a408be09fc48f07bf8b0e Mon Sep 17 00:00:00 2001 From: Thomas Fitzsimmons Date: Thu, 13 Nov 2014 01:13:34 -0500 Subject: [PATCH 05/16] Ignore text properties in eudc-expand-inline * net/eudc.el (eudc-expand-inline): Ignore text properties of string-to-expand. --- lisp/ChangeLog | 5 +++++ lisp/net/eudc.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 81dc8ba..bdf8eae 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2014-11-13 Thomas Fitzsimmons + * net/eudc.el (eudc-expand-inline): Ignore text properties of + string-to-expand. + +2014-11-13 Thomas Fitzsimmons + * net/eudc-vars.el (eudc-inline-expansion-format): Default to a format that includes first name and surname. diff --git a/lisp/net/eudc.el b/lisp/net/eudc.el index e038b28..54a41f0 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 -- 1.8.1.4