aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/net/eudc-vars.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 52bf8237f3d..658f5b6ca84 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12014-11-13 Thomas Fitzsimmons <fitzsim@fitzsim.org> 12014-11-13 Thomas Fitzsimmons <fitzsim@fitzsim.org>
2 2
3 * net/eudc-vars.el (eudc-expansion-overwrites-query): Change
4 default to nil.
5
62014-11-13 Thomas Fitzsimmons <fitzsim@fitzsim.org>
7
3 * net/eudc.el (eudc-expand-inline): Ignore text properties of 8 * net/eudc.el (eudc-expand-inline): Ignore text properties of
4 string-to-expand. 9 string-to-expand.
5 10
diff --git a/lisp/net/eudc-vars.el b/lisp/net/eudc-vars.el
index 2affe7be3ca..b3a0bf95e0e 100644
--- a/lisp/net/eudc-vars.el
+++ b/lisp/net/eudc-vars.el
@@ -186,7 +186,9 @@ must be set in a protocol/server-local fashion, see `eudc-server-set' and
186 (symbol :menu-tag "Other" :tag "Attribute name")))) 186 (symbol :menu-tag "Other" :tag "Attribute name"))))
187 :group 'eudc) 187 :group 'eudc)
188 188
189(defcustom eudc-expansion-overwrites-query t 189;; Default to nil so that the most common use of eudc-expand-inline,
190;; where replace is nil, does not affect the kill ring.
191(defcustom eudc-expansion-overwrites-query nil
190 "If non-nil, expanding a query overwrites the query string." 192 "If non-nil, expanding a query overwrites the query string."
191 :type 'boolean 193 :type 'boolean
192 :group 'eudc) 194 :group 'eudc)