diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-27 23:56:55 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-10-05 02:06:57 +0200 |
commit | 0a7bab689c4a113dd295c9db55d8e76a34d5f9e1 (patch) | |
tree | 48b28bc4a1a8b261b46dd419a060ddb09fca6274 /lisp/cedet | |
parent | e2861e2d08afd5dba9f676aa1e1d151a4d7dbc8f (diff) | |
download | emacs-0a7bab689c4a113dd295c9db55d8e76a34d5f9e1.tar.gz emacs-0a7bab689c4a113dd295c9db55d8e76a34d5f9e1.tar.bz2 emacs-0a7bab689c4a113dd295c9db55d8e76a34d5f9e1.zip |
; Minor stylistic fixes found by checkdoc
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/semantic/wisent/python.el | 6 | ||||
-rw-r--r-- | lisp/cedet/srecode/dictionary.el | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/semantic/wisent/python.el b/lisp/cedet/semantic/wisent/python.el index fb878dde712..2eeade66467 100644 --- a/lisp/cedet/semantic/wisent/python.el +++ b/lisp/cedet/semantic/wisent/python.el @@ -118,9 +118,9 @@ curly braces." ;; look-ahead assertions.) (when (and (= (- end start) 2) (looking-at "\"\\{3\\}\\|'\\{3\\}")) - (error "unterminated syntax")) + (error "Unterminated syntax")) (goto-char end)) - (error "unterminated syntax"))) + (error "Unterminated syntax"))) (defun wisent-python-forward-balanced-expression () "Move point to the end of the balanced expression at point. @@ -145,7 +145,7 @@ triple-quoted string syntax." ;; delimiter (backquote) characters, line continuation, and end ;; of comment characters (AKA newline characters in Python). ((zerop (skip-syntax-forward "-w_.$\\>")) - (error "can't figure out how to go forward from here")))) + (error "Can't figure out how to go forward from here")))) ;; Skip closing character. As a last resort this should raise an ;; error if we hit EOB before we find our closing character.. (forward-char 1))) diff --git a/lisp/cedet/srecode/dictionary.el b/lisp/cedet/srecode/dictionary.el index d6dfc58411e..e47a09fd846 100644 --- a/lisp/cedet/srecode/dictionary.el +++ b/lisp/cedet/srecode/dictionary.el @@ -364,7 +364,7 @@ values but STATE is nil." ;; Value is some other object; create a compound value. (t (unless state - (error "Cannot insert compound values without state.")) + (error "Cannot insert compound values without state")) (srecode-dictionary-set-value dict name |