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/net/rcompile.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/net/rcompile.el')
-rw-r--r-- | lisp/net/rcompile.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/net/rcompile.el b/lisp/net/rcompile.el index 88f4771d23f..3addcf73d74 100644 --- a/lisp/net/rcompile.el +++ b/lisp/net/rcompile.el @@ -1,7 +1,7 @@ ;;; rcompile.el --- run a compilation on a remote machine -;; Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, +;; 2008, 2009, 2010 Free Software Foundation, Inc. ;; Author: Albert <alon@milcse.rtsg.mot.com> ;; Maintainer: FSF @@ -75,7 +75,7 @@ (defcustom remote-compile-host nil - "*Host for remote compilations." + "Host for remote compilations." :type '(choice string (const nil)) :group 'remote-compile) @@ -86,7 +86,7 @@ nil means use the value returned by \\[user-login-name]." :group 'remote-compile) (defcustom remote-compile-run-before nil - "*Command to run before compilation. + "Command to run before compilation. This can be used for setting up environment variables, since rsh does not invoke the shell as a login shell and files like .login \(tcsh\) and .bash_profile \(bash\) are not run. @@ -95,12 +95,12 @@ nil means run no commands." :group 'remote-compile) (defcustom remote-compile-prompt-for-host nil - "*Non-nil means prompt for host if not available from filename." + "Non-nil means prompt for host if not available from filename." :type 'boolean :group 'remote-compile) (defcustom remote-compile-prompt-for-user nil - "*Non-nil means prompt for user if not available from filename." + "Non-nil means prompt for user if not available from filename." :type 'boolean :group 'remote-compile) |