1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-21 18:23:59 +00:00

(capitalized-words-mode): Add autoload

cookie.  Doc fix.
This commit is contained in:
Dave Love 2003-09-11 09:26:21 +00:00
parent 8a97200fb4
commit 6eff8ddf02

View File

@ -56,6 +56,7 @@ Looks for word boundaries before capitals."
tab) tab)
"Assigned to `next-word-boundary-function-table' in Capitalized Words mode.") "Assigned to `next-word-boundary-function-table' in Capitalized Words mode.")
;;;###autoload
(define-minor-mode capitalized-words-mode (define-minor-mode capitalized-words-mode
"Toggle Capitalized- Words mode. "Toggle Capitalized- Words mode.
@ -75,11 +76,11 @@ boundaries in found by regexp matching (`\\>', `\\w' &c).
This style of identifiers is common in environments like Java ones, This style of identifiers is common in environments like Java ones,
where underscores aren't trendy enough. Capitalization rules are where underscores aren't trendy enough. Capitalization rules are
sometimes part of the language, e.g. Haskell, which may encourage such sometimes part of the language, e.g. Haskell, which may thus encourage
a style. It is appropriate to add `capitalized-words-mode' to the such a style. It is appropriate to add `capitalized-words-mode' to
mode hook for programming langauge modes in which you encounter such the mode hook for programming langauge modes in which you encounter
variables, e.g. `java-mode-hook', since it's unlikely to cause trouble variables like this, e.g. `java-mode-hook'. It's unlikely to cause
if such identifiers aren't used. trouble if such identifiers aren't used.
See also `glasses-mode' and `studlify-word'. See also `glasses-mode' and `studlify-word'.
Obsoletes `c-forward-into-nomenclature'." Obsoletes `c-forward-into-nomenclature'."