diff options
author | Glenn Morris <rgm@gnu.org> | 2010-09-22 23:42:45 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-09-22 23:42:45 -0700 |
commit | 1fc7dabfcfd30e4c987df5e0d31a2574e9a2cd1b (patch) | |
tree | 1e852c37c54611999791b66432a7f0375172505c /lisp/emulation/edt.el | |
parent | 97161df81ec284e652047438c33bf596aa2d1ce9 (diff) | |
download | emacs-1fc7dabfcfd30e4c987df5e0d31a2574e9a2cd1b.tar.gz emacs-1fc7dabfcfd30e4c987df5e0d31a2574e9a2cd1b.tar.bz2 emacs-1fc7dabfcfd30e4c987df5e0d31a2574e9a2cd1b.zip |
Remove leading `*' from docs of some defcustoms etc.
* emulation/crisp.el, emulation/cua-base.el, emulation/edt.el:
* emulation/pc-select.el, emulation/vip.el, international/iso-ascii.el:
* international/kkc.el, international/ogonek.el, mail/feedmail.el:
* net/browse-url.el, net/eudc-vars.el, net/net-utils.el:
* net/rcompile.el, net/rlogin.el, textmodes/enriched.el:
* textmodes/makeinfo.el, textmodes/page-ext.el, textmodes/picture.el:
* textmodes/refer.el, textmodes/spell.el, textmodes/table.el:
* textmodes/tex-mode.el, textmodes/two-column.el:
Remove leading `*' from docs of defcustoms etc.
Diffstat (limited to 'lisp/emulation/edt.el')
-rw-r--r-- | lisp/emulation/edt.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index 88b74afe86b..1e017075d84 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el @@ -194,7 +194,7 @@ ;;; (defcustom edt-keep-current-page-delimiter nil - "*Emacs MUST be restarted for a change in value to take effect! + "Emacs MUST be restarted for a change in value to take effect! Non-nil leaves Emacs value of `page-delimiter' unchanged within EDT Emulation. If set to nil (the default), the `page-delimiter' variable is set to \"\\f\" when edt-emulation-on is first invoked. This @@ -204,7 +204,7 @@ is restored when edt-emulation-off is called." :group 'edt) (defcustom edt-use-EDT-control-key-bindings nil - "*Emacs MUST be restarted for a change in value to take effect! + "Emacs MUST be restarted for a change in value to take effect! Non-nil causes the control key bindings to be replaced with EDT bindings. If set to nil (the default), EDT control key bindings are not used and the current Emacs control key bindings are retained for @@ -213,7 +213,7 @@ use within the EDT emulation." :group 'edt) (defcustom edt-word-entities '(?\t) - "*Specifies the list of EDT word entity characters. + "Specifies the list of EDT word entity characters. The default list, (\?\\t), contains just the TAB character, which emulates EDT. Characters are specified in the list using their decimal ASCII values. A question mark, followed by the actual @@ -238,14 +238,14 @@ will be treated as if it were a separate word." :group 'edt) (defcustom edt-top-scroll-margin 10 - "*Scroll margin at the top of the screen. + "Scroll margin at the top of the screen. Interpreted as a percent of the current window size with a default setting of 10%. If set to 0, top scroll margin is disabled." :type 'integer :group 'edt) (defcustom edt-bottom-scroll-margin 15 - "*Scroll margin at the bottom of the screen. + "Scroll margin at the bottom of the screen. Interpreted as a percent of the current window size with a default setting of 15%. If set to 0, bottom scroll margin is disabled." :type 'integer |