aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArash Esbati2016-01-17 11:28:58 +0100
committerTassilo Horn2016-01-23 10:32:31 +0100
commit5c3edcd75356bab9e36f0b183584a9b9302e2f0c (patch)
tree4ccb4a84e4afad95bfe7a636e88e5e05cdf50785
parentc07bddd69dab6252ce1e8a283a023d693b7d7ad6 (diff)
downloademacs-5c3edcd75356bab9e36f0b183584a9b9302e2f0c.tar.gz
emacs-5c3edcd75356bab9e36f0b183584a9b9302e2f0c.zip
Delete a spurious backquote (tiny change)
* lisp/textmodes/reftex-ref.el (reftex-label): Delete a spurious backquote which raises an error with emacs 25.
-rw-r--r--lisp/textmodes/reftex-ref.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex-ref.el b/lisp/textmodes/reftex-ref.el
index 5ac0e284eed..32703591cad 100644
--- a/lisp/textmodes/reftex-ref.el
+++ b/lisp/textmodes/reftex-ref.el
@@ -228,7 +228,7 @@ This function is controlled by the settings of reftex-insert-label-flags."
228 (symbol-value reftex-docstruct-symbol))) 228 (symbol-value reftex-docstruct-symbol)))
229 (ding) 229 (ding)
230 (if (y-or-n-p 230 (if (y-or-n-p
231` (format-message "Label `%s' exists. Use anyway? " label)) 231 (format-message "Label `%s' exists. Use anyway? " label))
232 (setq valid t))) 232 (setq valid t)))
233 233
234 ;; Label is ok 234 ;; Label is ok