aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Fitzsimmons2014-11-13 01:17:56 -0500
committerThomas Fitzsimmons2014-11-13 01:17:56 -0500
commitb7d2dfa9f3eb4daf1499de8cc7ad76683ac5dbec (patch)
tree9c8121ca15a9ccddc236dc3b4e6d235caeca473b
parentc8d2553bd424e45872a1fe4f94c8be291eea5dc1 (diff)
downloademacs-b7d2dfa9f3eb4daf1499de8cc7ad76683ac5dbec.tar.gz
emacs-b7d2dfa9f3eb4daf1499de8cc7ad76683ac5dbec.zip
Change eudc-expansion-overwrites-query default to nil
* net/eudc-vars.el (eudc-expansion-overwrites-query): Change default to nil.
-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)