diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/eudc.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b3b30347bb..52bf8237f3d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2014-11-13 Thomas Fitzsimmons <fitzsim@fitzsim.org> | 1 | 2014-11-13 Thomas Fitzsimmons <fitzsim@fitzsim.org> |
| 2 | 2 | ||
| 3 | * net/eudc.el (eudc-expand-inline): Ignore text properties of | ||
| 4 | string-to-expand. | ||
| 5 | |||
| 6 | 2014-11-13 Thomas Fitzsimmons <fitzsim@fitzsim.org> | ||
| 7 | |||
| 3 | * net/eudc-vars.el (eudc-inline-expansion-format): Default to a | 8 | * net/eudc-vars.el (eudc-inline-expansion-format): Default to a |
| 4 | format that includes first name and surname. | 9 | format that includes first name and surname. |
| 5 | 10 | ||
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'" | |||
| 830 | (point-at-bol) 'move) | 830 | (point-at-bol) 'move) |
| 831 | (goto-char (match-end 0))) | 831 | (goto-char (match-end 0))) |
| 832 | (point))) | 832 | (point))) |
| 833 | (query-words (split-string (buffer-substring beg end) "[ \t]+")) | 833 | (query-words (split-string (buffer-substring-no-properties beg end) |
| 834 | "[ \t]+")) | ||
| 834 | query-formats | 835 | query-formats |
| 835 | response | 836 | response |
| 836 | response-string | 837 | response-string |