diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-29 21:40:21 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-29 21:43:01 -0700 |
commit | 001c7dd928238a196dff4166ad29141116ef6d1c (patch) | |
tree | 00032c5e1001248c98d396d669d5a00571c4c8d4 /lisp/cedet/semantic/analyze | |
parent | 24ee55bfd4371e24a03db0fbd830ad5adac0ac4f (diff) | |
download | emacs-001c7dd928238a196dff4166ad29141116ef6d1c.tar.gz |
Text quoting fixes in cedet, emulation, emacs-lisp
* lisp/cedet/ede.el (ede-check-project-directory):
* lisp/cedet/semantic/analyze/debug.el:
(semantic-analyzer-debug-insert-include-summary):
* lisp/cedet/semantic/bovine/c.el (semantic-c-describe-environment):
* lisp/cedet/semantic/decorate/include.el:
(semantic-decoration-unknown-include-describe)
(semantic-decoration-all-include-summary):
* lisp/cedet/semantic/ia.el (semantic-ia-fast-jump):
* lisp/emulation/edt.el (edt-load-keys):
* lisp/emulation/viper-cmd.el:
(viper-display-current-destructive-command)
(viper-query-replace, viper-brac-function):
* lisp/emulation/viper-ex.el (viper-get-ex-token, ex-compile):
* lisp/emulation/viper-macs.el (viper-unrecord-kbd-macro):
Respect text quoting style in doc string or diagnostic.
* lisp/cedet/mode-local.el (describe-mode-local-overload):
Use format-message to avoid overtranslating quotes.
* lisp/emacs-lisp/checkdoc.el (checkdoc-in-sample-code-p):
Escape an apostrophe in a docstring.
* lisp/emacs-lisp/warnings.el (lwarn): Fix doc string.
Diffstat (limited to 'lisp/cedet/semantic/analyze')
-rw-r--r-- | lisp/cedet/semantic/analyze/debug.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/cedet/semantic/analyze/debug.el b/lisp/cedet/semantic/analyze/debug.el index d0ab7c82c13..76a6cc2f9b2 100644 --- a/lisp/cedet/semantic/analyze/debug.el +++ b/lisp/cedet/semantic/analyze/debug.el @@ -405,7 +405,8 @@ or implementing a version specific to ") (princ "\n\nInclude Path Summary:") (when edeobj - (princ "\n\nThis file's project include search is handled by the EDE object:\n") + (princ (substitute-command-keys + "\n\nThis file's project include search is handled by the EDE object:\n")) (princ " Buffer Target: ") (princ (object-print edeobj)) (princ "\n") @@ -463,12 +464,12 @@ or implementing a version specific to ") (princ "\nYou can fix the include path for ") (princ (symbol-name (oref table major-mode))) - (princ " by using this function: + (princ (substitute-command-keys " by using this function: -M-x semantic-customize-system-include-path RET +\\[semantic-customize-system-include-path] which customizes the mode specific variable for the mode-local -variable `semantic-dependency-system-include-path'.") +variable `semantic-dependency-system-include-path'.")) ) (princ "\n No unknown includes.\n")) |