diff options
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/viper-cmd.el | 10 | ||||
-rw-r--r-- | lisp/emulation/viper-init.el | 2 | ||||
-rw-r--r-- | lisp/emulation/viper-macs.el | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index 8b3f6b46507..93fcec865a7 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el @@ -3449,7 +3449,7 @@ controlled by the sign of prefix numeric value." (setq viper-parse-sexp-ignore-comments (not viper-parse-sexp-ignore-comments)) (princ (format-message - "From now on, ‘%%’ will %signore parentheses inside comment fields" + "From now on, `%%' will %signore parentheses inside comment fields" (if viper-parse-sexp-ignore-comments "" "NOT ")))) @@ -3641,7 +3641,7 @@ the Emacs binding of `/'." (cond ((or (eq arg 1) (and (null arg) (y-or-n-p (format-message - "Search style: ‘%s’. Want ‘%s’? " + "Search style: `%s'. Want `%s'? " (if viper-case-fold-search "case-insensitive" "case-sensitive") (if viper-case-fold-search @@ -3654,7 +3654,7 @@ the Emacs binding of `/'." ((or (eq arg 2) (and (null arg) (y-or-n-p (format-message - "Search style: ‘%s’. Want ‘%s’? " + "Search style: `%s'. Want `%s'? " (if viper-re-search "regexp-search" "vanilla-search") (if viper-re-search @@ -3990,7 +3990,7 @@ Null string will repeat previous search." (if (or (not (buffer-modified-p buffer)) (y-or-n-p (format-message - "Buffer ‘%s’ is modified, are you sure you want to kill it? " + "Buffer `%s' is modified, are you sure you want to kill it? " buffer-name))) (kill-buffer buffer) (error "Buffer not killed")))) @@ -4640,7 +4640,7 @@ One can use \\=`\\=` and \\='\\=' to temporarily jump 1 step back." reg (substring text (- pos s))))) (princ (format-message - "Textmarker ‘%c’ is in buffer ‘%s’ at line %d.\n" + "Textmarker `%c' is in buffer `%s' at line %d.\n" reg (buffer-name buf) line-no)) (princ (format "Here is some text around %c:\n\n %s" reg text))) diff --git a/lisp/emulation/viper-init.el b/lisp/emulation/viper-init.el index e28c67a5315..092de55e70e 100644 --- a/lisp/emulation/viper-init.el +++ b/lisp/emulation/viper-init.el @@ -583,7 +583,7 @@ the Insert state." (defcustom viper-keep-point-on-repeat t "If t, don't move point when repeating previous command. -This is useful for doing repeated changes with the ‘.’ key. +This is useful for doing repeated changes with the `.' key. The user can change this to nil, if she likes when the cursor moves to a new place after repeating previous Vi command." :type 'boolean diff --git a/lisp/emulation/viper-macs.el b/lisp/emulation/viper-macs.el index 4b33b423740..4fa07792334 100644 --- a/lisp/emulation/viper-macs.el +++ b/lisp/emulation/viper-macs.el @@ -370,11 +370,11 @@ If SCOPE is nil, the user is asked to specify the scope." (cond ((y-or-n-p (format-message - "Map this macro for buffer ‘%s’ only? " + "Map this macro for buffer `%s' only? " (buffer-name))) (setq msg (format-message - "%S is mapped to %s for %s in ‘%s’" + "%S is mapped to %s for %s in `%s'" (viper-display-macro macro-name) (viper-abbreviate-string (format @@ -386,11 +386,11 @@ If SCOPE is nil, the user is asked to specify the scope." (buffer-name)) ((y-or-n-p (format-message - "Map this macro for the major mode ‘%S’ only? " + "Map this macro for the major mode `%S' only? " major-mode)) (setq msg (format-message - "%S is mapped to %s for %s in ‘%S’" + "%S is mapped to %s for %s in `%S'" (viper-display-macro macro-name) (viper-abbreviate-string (format |