]> git.eshelyaron.com Git - emacs.git/commitdiff
(cperl-electric-keywords): Document in the doc string how to use personal
authorEli Zaretskii <eliz@gnu.org>
Sat, 20 Jan 2007 15:53:04 +0000 (15:53 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 20 Jan 2007 15:53:04 +0000 (15:53 +0000)
abbrevs without electric keywords.

lisp/progmodes/cperl-mode.el

index 14cbaf9c0f41873141c4ed6a8f6bc2aa66965002..4aea466f747dea6344faa76747ad47650eafd9ed 100644 (file)
@@ -352,7 +352,15 @@ Can be overwritten by `cperl-hairy' if nil."
 
 (defcustom cperl-electric-keywords nil
   "*Not-nil (and non-null) means keywords are electric in CPerl.
-Can be overwritten by `cperl-hairy' if nil."
+Can be overwritten by `cperl-hairy' if nil.
+
+Uses `abbrev-mode' to do the expansion.  If you want to use your
+own abbrevs in cperl-mode, but do not want keywords to be
+electric, you must redefine `cperl-mode-abbrev-table': do
+\\[edit-abbrevs], search for `cperl-mode-abbrev-table', and, in
+that paragraph, delete the words that appear at the ends of lines and
+that begin with \"cperl-electric\".
+"
   :type '(choice (const null) boolean)
   :group 'cperl-affected-by-hairy)