diff options
| author | Thomas Fitzsimmons | 2014-11-13 01:10:10 -0500 |
|---|---|---|
| committer | Thomas Fitzsimmons | 2014-11-13 01:10:10 -0500 |
| commit | fa9a3ca5364921612824fb8c4dc4125a0eb3d64a (patch) | |
| tree | 56b363496ededbebfb53b7c37b56a702d5a6f092 | |
| parent | 6dda29fd027e73bc76e48d29727a48cc47468d30 (diff) | |
| download | emacs-fa9a3ca5364921612824fb8c4dc4125a0eb3d64a.tar.gz emacs-fa9a3ca5364921612824fb8c4dc4125a0eb3d64a.zip | |
Improve eudc-inline-expansion-format's default value
* net/eudc-vars.el (eudc-inline-expansion-format): Default to a
format that includes first name and surname.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/eudc-vars.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c4c9ef0b143..4b3b30347bb 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-vars.el (eudc-inline-expansion-format): Default to a | ||
| 4 | format that includes first name and surname. | ||
| 5 | |||
| 6 | 2014-11-13 Thomas Fitzsimmons <fitzsim@fitzsim.org> | ||
| 7 | |||
| 3 | * net/eudc-vars.el (eudc-inline-query-format): Change default to | 8 | * net/eudc-vars.el (eudc-inline-query-format): Change default to |
| 4 | query email and first name instead of surname. | 9 | query email and first name instead of surname. |
| 5 | 10 | ||
diff --git a/lisp/net/eudc-vars.el b/lisp/net/eudc-vars.el index 06f63ebc8e1..2affe7be3ca 100644 --- a/lisp/net/eudc-vars.el +++ b/lisp/net/eudc-vars.el | |||
| @@ -191,7 +191,7 @@ must be set in a protocol/server-local fashion, see `eudc-server-set' and | |||
| 191 | :type 'boolean | 191 | :type 'boolean |
| 192 | :group 'eudc) | 192 | :group 'eudc) |
| 193 | 193 | ||
| 194 | (defcustom eudc-inline-expansion-format '("%s" email) | 194 | (defcustom eudc-inline-expansion-format '("%s %s <%s>" firstname name email) |
| 195 | "A list specifying the format of the expansion of inline queries. | 195 | "A list specifying the format of the expansion of inline queries. |
| 196 | This variable controls what `eudc-expand-inline' actually inserts in | 196 | This variable controls what `eudc-expand-inline' actually inserts in |
| 197 | the buffer. First element is a string passed to `format'. Remaining | 197 | the buffer. First element is a string passed to `format'. Remaining |