1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-19 18:13:55 +00:00

(capitalized-words-mode): Fix typos in docstring.

This commit is contained in:
Juanma Barranquero 2008-05-23 15:31:17 +00:00
parent 67ef752841
commit f05cde180d
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-05-23 Juanma Barranquero <lekktu@gmail.com>
* progmodes/cap-words.el (capitalized-words-mode):
Fix typos in docstring.
2008-05-23 Kenichi Handa <handa@m17n.org>
* international/mule-conf.el: Don't define the charset `emacs'

View File

@ -60,7 +60,7 @@ Looks for word boundaries before capitals."
;;;###autoload
(define-minor-mode capitalized-words-mode
"Toggle Capitalized- Words mode.
"Toggle Capitalized Words mode.
In this minor mode, a word boundary occurs immediately before an
uppercase letter in a symbol. This is in addition to all the normal
@ -74,13 +74,13 @@ E.g. the beginning of words in the following identifier are as marked:
Note that these word boundaries only apply for word motion and
marking commands such as \\[forward-word]. This mode does not affect word
boundaries in found by regexp matching (`\\>', `\\w' &c).
boundaries found by regexp matching (`\\>', `\\w' &c).
This style of identifiers is common in environments like Java ones,
where underscores aren't trendy enough. Capitalization rules are
sometimes part of the language, e.g. Haskell, which may thus encourage
such a style. It is appropriate to add `capitalized-words-mode' to
the mode hook for programming langauge modes in which you encounter
the mode hook for programming language modes in which you encounter
variables like this, e.g. `java-mode-hook'. It's unlikely to cause
trouble if such identifiers aren't used.