aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/add-log.el
Commit message (Collapse)AuthorAgeFilesLines
...
* (change-log-mode): Add `* ' to paragraph-start.Dave Love1998-04-231-6/+6
|
* (change-log-mode): Revert 1997-12-03 doc change.Dave Love1998-04-171-80/+68
| | | | | | | | | | (add-change-log-entry): Replace 1997-12-03 changes with simple implementation of add-log-keep-changes-together. Doc fix. (change-log-add-make-room): Function deleted. (add-change-log-entry-other-window, change-log-mode, add-log-keep-changes-together): Doc fix. (add-log-lisp-like-modes): Add dsssl-mode. (add-log-current-defun): Generalize Fortran case.
* (change-log-font-lock-keywords): Recognize + in date.Richard M. Stallman1998-03-011-1/+1
|
* Changed font-lock-reference-face to font-lock-constant-face.Simon Marshall1998-02-201-1/+1
|
* (change-log-add-make-room): New function.Karl Heuer1997-12-041-24/+86
| | | | | | | | | (change-log-get-method-definition-1): Renamed get-method-definition-1. (change-log-get-method-definition): Renamed from get-method-definition. (add-log-keep-changes-together): New user variable. (add-change-log-entry): Added missing WHOAMI explanation. Added new functionality according to variable `add-log-keep-changes-together'.
* (add-log-current-defun-function): Likewise.Richard M. Stallman1997-09-131-1/+1
|
* (change-log-font-lock-keywords): Add more to prev change.Richard M. Stallman1997-08-311-2/+2
|
* (change-log-font-lock-keywords):Richard M. Stallman1997-08-241-2/+4
| | | | Match "Patches by". Match all kinds of acks after ` '.
* (change-log-font-lock-keywords): Recognize "Patch by".Richard M. Stallman1997-08-231-6/+6
|
* Comment change.Richard M. Stallman1997-08-191-1/+1
|
* (change-log-font-lock-keywords): Don't considerRichard M. Stallman1997-08-121-2/+2
| | | | a closeparen as part of a function or variable name.
* (add-log-time-format): New variable.Richard M. Stallman1997-06-171-14/+29
| | | | | | (add-log-iso8601-time-string): New function. (add-change-log-entry): Use add-log-time-format. (add-log-iso8601-time-zone): Renamed from iso8601-time-zone.
* (change-log-font-lock-keywords): Tweak font-lock-keywords.Erik Naggum1997-05-221-2/+4
|
* (add-log-lisp-like-modes, add-log-c-like-modes, add-log-tex-like-modes):Erik Naggum1997-05-211-15/+27
| | | | | New variables. (add-log-current-defun): Use them instead of constant lists.
* Add defgroup's; use defcustom for user vars.Richard M. Stallman1997-04-121-11/+32
|
* (change-log-fill-paragraph): Return non-nil soRichard M. Stallman1996-11-021-3/+4
| | | | | fill-paragraph doesn't continue filling. Don't skip backwards over a paragraph if we at a paragraph start.
* Tweak change-log-font-lock-keywordsSimon Marshall1996-10-231-3/+22
|
* (change-log-name): Don't treat MSDOS, NT specially.Richard M. Stallman1996-09-011-4/+2
|
* Change to ISO 8601 date formats, without time of day.Erik Naggum1996-08-241-12/+40
| | | | | | | | | | | (change-log-font-lock-keywords): Adjust accordingly. (add-change-log-entry): Compare and insert with new date format. (change-log-mode): Make `paragraph-start' and `paragraph-separate' use \< like `page-delimiter' for consistency. (change-log-time-zone-rule): New variable. (iso8601-time-zone): New function. (add-change-log-entry): If change-log-time-zone-rule is non-nil, calculate date according to that rule, and indicate resulting time zone.
* [fixing previous change]Karl Heuer1996-08-201-0/+7
| | | | | (change-log-mode-map): Don't bind M-q. (change-log-mode): Set fill-paragraph-function instead.
* (change-log-mode): Set fill-paragraph-function.Karl Heuer1996-08-201-10/+4
| | | | (change-log-mode-map): Deleted; no bindings left.
* (change-log-font-lock-keywords): Require colon afterKarl Heuer1996-05-281-1/+1
| | | | parenthesized function name.
* (add-log-full-name, add-log-mailing-address): Add autoload cookies.Richard M. Stallman1996-03-221-0/+2
|
* (add-log-current-defun): In Lisp, if we don't find aRichard M. Stallman1996-02-091-1/+2
| | | | real defun, return nil, not "".
* Update FSF's address.Erik Naggum1996-01-141-2/+3
|
* (change-log-mode): Defaults for `indent-tabs-mode'Karl Heuer1995-12-131-1/+3
| | | | and `tab-width'.
* (add-change-log-entry): Initialize add-log-full-nameRichard M. Stallman1995-11-251-4/+4
| | | | and add-log-mailing-address before prompting.
* (change-log-mode): Remove incorrect "^" anchors fromRichard M. Stallman1995-11-111-5/+8
| | | | | | | | paragraph-start and -separate. (change-log-fill-paragraph): Use regular value of paragraph-start to bound paragraph to be filled, modified values only to do the filling. Make lines beginning with parentheses paragraph-starters, but not paragraph-separators.
* (get-method-definition, get-method-definition-1):Richard M. Stallman1995-10-241-5/+8
| | | | Rename var md to get-method-definition-md and defvar it.
* (add-log-current-defun): Handle `private', `public' in C++ class definitions.Richard M. Stallman1995-10-201-0/+8
|
* (add-log-current-defun): Ignore quotes before fcn name.Richard M. Stallman1995-09-251-2/+2
|
* (add-log-current-defun): Handle C struct definitions.Karl Heuer1995-07-171-32/+47
| | | | | (add-change-log-entry): Use case-sensitive search for file name. Find first blank line correctly.
* (prompt-for-change-log-name): Handle the case whereKarl Heuer1995-06-091-4/+14
| | | | a directory name is specified gracefully.
* (get-method-definition): Fix regexps.Karl Heuer1995-05-151-3/+3
|
* (add-log-current-defun): Handle objc-mode like c-mode;Richard M. Stallman1995-05-081-34/+34
| | | | detect method definitions by their syntax.
* (get-method-definition, get-method-definition-1): New functions.Richard M. Stallman1995-05-081-0/+27
| | | | (add-log-current-defun): Use them to handle objc-mode.
* change-log-font-lock-keywords efficiency fix.Simon Marshall1995-04-241-1/+1
|
* (find-change-log): If change-log-default-nameRichard M. Stallman1994-11-101-4/+10
| | | | has no dir component, search through parent dirs for it.
* (change-log-name): Use changlo on windows-nt.Richard M. Stallman1994-11-011-1/+1
|
* (change-log-mode-map): Move the definition up.Richard M. Stallman1994-10-131-7/+7
|
* * add-log.el: (change-log-mode): Set font-lock-defaults.Simon Marshall1994-10-121-1/+2
|
* (add-log-current-defun): In texinfo-mode,Richard M. Stallman1994-10-081-1/+1
| | | | handle the case of no commas after @node.
* (change-log-mode): Set font-lock-keywords locally.Richard M. Stallman1994-10-071-0/+7
| | | | (change-log-font-lock-keywords): New variable.
* (add-log-current-defun): Handle Perl specially.Richard M. Stallman1994-10-051-1/+5
|
* (add-change-log-entry): Set add-log-full-name andRichard M. Stallman1994-09-221-6/+6
| | | | | add-log-mailing-address here. (add-log-mailing-address, add-log-full-name): Initialize to nil.
* (add-log-current-defun): Deal with lisp-interaction-mode like lisp-mode.Richard M. Stallman1994-09-201-1/+2
|
* (add-log-current-defun): Skip doc stringRichard M. Stallman1994-07-241-1/+3
| | | | correctly even if it ends with line that starts space.
* (add-change-log-entry): Use <...> around mail address.Richard M. Stallman1994-07-161-2/+2
|
* (add-change-log-entry): Apply expand-file-name to FILE-NAME.Roland McGrath1994-07-041-1/+1
|
* (add-log-mailing-address): Use user-mail-address.Richard M. Stallman1994-06-251-3/+2
|