summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/easy-mmode.el
Commit message (Collapse)AuthorAgeFilesLines
* (define-globalized-minor-mode): Improve doc string of generated command.Richard M. Stallman2007-04-221-4/+5
|
* (define-globalized-minor-mode): Rename from define-global-minor-mode.Chong Yidong2007-02-031-4/+6
|
* Add 2007 to copyright years.Glenn Morris2007-01-211-1/+1
|
* (define-global-minor-mode): Doc fix.Richard M. Stallman2006-12-301-1/+1
|
* (easy-mmode-define-navigation): Fix interactive spec of the functionsChong Yidong2006-11-281-2/+2
| | | | getting defined to make them work as documented.
* (define-minor-mode): Reference manual about customization, rather thanRichard M. Stallman2006-08-311-1/+2
| | | | M-x customize, in the doc string made for the defcustom.
* (define-minor-mode): Doc fix.Richard M. Stallman2006-07-091-2/+2
|
* (define-minor-mode): Doc fix.Eli Zaretskii2006-07-081-1/+1
|
* (define-minor-mode): Only preserve messages output during execution of the body.Stefan Monnier2006-05-081-2/+6
|
* Update years in copyright notice; nfc.Thien-Thi Nguyen2006-02-061-2/+2
|
* (easy-mmode-define-navigation): Put `definition-name' properties on theJuri Linkov2005-12-041-1/+3
| | | | constructed function names next-sym and prev-sym.
* (define-global-minor-mode): Pass all specified keyword args on toLuc Teirlinck2005-11-051-9/+17
| | | | `define-minor-mode'. Update docstring.
* (define-minor-mode): Simplify.Stefan Monnier2005-08-241-15/+7
|
* (define-minor-mode): Never call the mode function using `eval-after-load'.Luc Teirlinck2005-07-221-6/+1
|
* (define-minor-mode): Avoid constructing a defcustom with two :set orLuc Teirlinck2005-07-161-4/+11
| | | | :type keywords.
* (define-minor-mode): Do not override explicitly specified :initialize keyword.Luc Teirlinck2005-07-141-1/+7
|
* Update FSF's address.Lute Kamstra2005-07-041-2/+2
|
* (define-minor-mode): Don't automatically add a :require to the defcustom.Stefan Monnier2005-06-261-4/+1
|
* (define-minor-mode): If BODY is empty, give the variable a doc stringRichard M. Stallman2005-06-081-5/+10
| | | | that doesn't say don't set it directly.
* (define-global-minor-mode): Make it keep track of which major mode itLuc Teirlinck2005-06-041-19/+47
| | | | enabled the minor mode for. Use find-file-hook again. Update docstring.
* (define-global-minor-mode): Use `after-change-major-mode-hook' insteadLuc Teirlinck2005-05-221-3/+3
| | | | of `find-file-hook'.
* (define-minor-mode): Don't generate a defcustom for the mode hook variable.Lute Kamstra2005-05-171-15/+8
|
* (easy-mmode-pretty-mode-name): Improve commentary.Eli Zaretskii2005-05-081-2/+4
|
* (easy-mmode-pretty-mode-name): ExplainEli Zaretskii2005-05-071-3/+16
| | | | | | | more about the LIGHTER arg's usage in the doc string. Add commentary to clarify what the code does. Fix the regexp that strips whitespace from LIGHTER. Quote LIGHTER before using it, since it could have characters special to regular expressions.
* (define-minor-mode): Fix docstring.Lute Kamstra2005-04-261-2/+2
|
* (define-global-minor-mode): Don't use custom-current-group.Lute Kamstra2005-04-051-10/+11
| | | | (define-minor-mode): Ditto. Document default :group value.
* (define-global-minor-mode): Renamed from easy-mmode-define-global-mode.Richard M. Stallman2005-03-311-2/+3
| | | | (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
* (easy-mmode-define-global-mode, define-minor-mode): CallLute Kamstra2005-03-311-5/+6
| | | | custom-current-group at load-time.
* (define-minor-mode): Use called-interactively-p.Richard M. Stallman2004-11-021-1/+1
|
* (easy-mmode-define-navigation): Use a more robust check of widening.Stefan Monnier2004-01-271-10/+9
|
* (easy-mmode-define-navigation): Take additionalThien-Thi Nguyen2003-11-141-18/+35
| | | | | | | optional arg NARROWFUN. For the generated functions: Add local var `was-narrowed-p'. Also, if NARROWFUN is specified, include frags that arrange to check for and save narrowing state before the move and then conditionally call NARROWFUN after the move.
* (easy-mmode-define-navigation): AvoidDave Love2003-10-201-2/+2
| | | | incf in macro expansion.
* Add arch taglinesMiles Bader2003-09-011-0/+1
|
* (easy-mmode-define-navigation): AvoidAndreas Schwab2003-06-221-3/+3
| | | | | variable as format argument for error. Don't call symbol-name on string.
* (define-minor-mode): Add edebug spec.Stefan Monnier2003-05-291-5/+15
| | | | Accept a :keymap argument, as you'd expect.
* (define-minor-mode): Only echo a message if the body didn't do so already.Stefan Monnier2003-04-181-4/+3
| | | | (easy-mmode-define-keymap): Remove unused var `suppress'.
* (define-minor-mode): Use custom-set-minor-mode.Stefan Monnier2003-03-241-9/+13
| | | | Pass unknown keyword args blindly to defcustom.
* Trailing whitepace deleted.Juanma Barranquero2003-02-041-1/+1
|
* (define-minor-mode): Use `custom-current-group'.Markus Rost2002-12-131-5/+8
| | | | | Pass all groups to the hook. (easy-mmode-define-global-mode): Use `custom-current-group'.
* (define-minor-mode): Doc fix.Richard M. Stallman2002-10-071-5/+14
|
* (define-minor-mode): Don't add propertiesStefan Monnier2002-09-271-10/+3
| | | | | to the name since they're added by mode-line-format already. (define-minor-mode): Run (,mode -1) when needed.
* (define-minor-mode): Add a :require arg.Stefan Monnier2002-09-131-12/+15
| | | | Don't call the function during init if mode is on by default.
* (define-minor-mode): Use customize-mark-as-set for global minor modes.Stefan Monnier2002-08-261-3/+5
|
* (easy-mmode-define-global-mode): Use find-file-hook instead of find-file-hooks.Stefan Monnier2002-08-151-10/+15
| | | | | | (define-minor-mode): Get rid of this silly `togglep'. Add an explicit `toggle' argument (used for interactive calls). Emit a warning when a nil argument turns the mode off.
* (easy-mmode-define-global-mode): Put `definition-name' properties onRichard M. Stallman2002-08-131-1/+3
| | | | the functions whose names are constructed.
* (define-minor-mode): Use "P" in interactive spec of minor mode commands.Richard M. Stallman2002-03-041-1/+1
|
* (define-minor-mode): Make no arg by default in an interactive call,Richard M. Stallman2001-12-211-2/+4
| | | | so that repeating the command toggles again.
* (define-minor-mode): UseGerd Moellmann2001-08-091-6/+4
| | | | mode-line-minor-mode-keymap for the minor mode name.
* *** empty log message ***Pavel Janík2001-07-171-2/+4
|
* Some fixes to follow coding conventions.Pavel Janík2001-07-161-1/+1
|