aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTassilo Horn2021-10-08 13:03:45 +0200
committerTassilo Horn2021-10-08 13:03:45 +0200
commitaf01b674cec1ea7e9dd801f40c1ca8221f5cc8da (patch)
tree5d926851a45ac9c0a28431fd930faf442c4161f4
parent915e044d60dfde0953327cb9cbfe8bb0f69e5dd4 (diff)
downloademacs-af01b674cec1ea7e9dd801f40c1ca8221f5cc8da.tar.gz
emacs-af01b674cec1ea7e9dd801f40c1ca8221f5cc8da.zip
; Fix spacing in previous commit
-rw-r--r--lisp/textmodes/reftex-toc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex-toc.el b/lisp/textmodes/reftex-toc.el
index 26ae8338283..b5f53ba86e7 100644
--- a/lisp/textmodes/reftex-toc.el
+++ b/lisp/textmodes/reftex-toc.el
@@ -856,7 +856,7 @@ label prefix determines the wording of a reference."
856 (label (car toc)) newlabel) 856 (label (car toc)) newlabel)
857 (if (not (stringp label)) 857 (if (not (stringp label))
858 (error "This is not a label entry")) 858 (error "This is not a label entry"))
859 (setq newlabel (read-string (format "Rename label \"%s\" to :" label))) 859 (setq newlabel (read-string (format "Rename label \"%s\" to: " label)))
860 (if (assoc newlabel (symbol-value reftex-docstruct-symbol)) 860 (if (assoc newlabel (symbol-value reftex-docstruct-symbol))
861 (if (not (y-or-n-p 861 (if (not (y-or-n-p
862 (format-message "Label `%s' exists. Use anyway? " newlabel))) 862 (format-message "Label `%s' exists. Use anyway? " newlabel)))