aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/add-log.el
Commit message (Collapse)AuthorAgeFilesLines
* (change-log-font-lock-keywords): Complete 2005-04-03 change.Lute Kamstra2005-04-061-6/+6
|
* (change-log-font-lock-keywords): Names in parenthesized lists canLute Kamstra2005-04-041-6/+6
| | | | contain spaces.
* Fixed syntax highlighting in lisp/add-log.el.Marcelo Toledo2005-04-031-1/+1
|
* (add-log-current-defun): Support more C DEFUN forms.Sam Steingold2005-03-211-6/+10
|
* Change release version from 21.4 to 22.1 throughout.Kim F. Storm2005-02-091-2/+2
| | | | Change development version from 21.3.50 to 22.0.50.
* (change-log-font-lock-keywords): Don't match just "From".Richard M. Stallman2005-01-041-1/+3
|
* (add-log-current-defun): Handle the case where pointRichard M. Stallman2004-12-031-3/+22
| | | | is in the header part of a DEFUN construct.
* (add-change-log-entry): Set up mailing address and full name later,Richard M. Stallman2004-10-271-19/+17
| | | | and don't alter add-log-mailing-address or add-log-full-name.
* (change-log-font-lock-keywords): SupportSam Steingold2004-06-251-4/+7
| | | | Common Lisp function names `(setf symbol)'.
* (change-log-font-lock-keywords): Remove `:' fromJuri Linkov2004-05-231-4/+4
| | | | regexps for function and variable names.
* (add-change-log-entry): Update doc string to mentionStephen Eglen2004-04-191-1/+1
| | | | add-log-full-name and add-log-mailing-address.
* (add-change-log-entry): Simplify.Stefan Monnier2004-03-191-3/+2
|
* Add arch taglinesMiles Bader2003-09-011-0/+1
|
* (add-log-edit-prev-comment, add-log-edit-next-comment): New commands.Stefan Monnier2003-06-161-3/+36
| | | | | | (change-log-mode-map): Bind them. (smerge-resolve-function): Declare to quieten the byte-compiler. (change-log-mode): Add the keymap to the docstring.
* (add-log-current-defun-function): Add autoload cookie.Richard M. Stallman2003-04-191-0/+2
|
* (change-log-version-number-search): Fix old bug.Stefan Monnier2003-04-121-11/+36
| | | | | | | (add-change-log-entry): Avoid inserting the same funname again. (add-log-indent-text): New var. (add-log-indent): New fun. (change-log-mode): Use it.
* (add-change-log-entry): Don't leave space at eol.Stefan Monnier2003-01-181-29/+27
| | | | (add-log-current-defun): Perl functions names can't have (or {.
* (change-log-mode): Set indent-line-function explicitlyStefan Monnier2002-12-021-0/+1
| | | | to what it was before indent-line-function's default was changed.
* (add-change-log-entry): Don't call find-file at allStefan Monnier2002-10-101-22/+37
| | | | | | | | if we're already in the proper buffer. (change-log-resolve-conflict): New fun. (change-log-mode): Use it and use define-derived-mode. (change-log-merge): Allow other-log to be a buffer. Don't add a \n if there are already enough \n's.
* (add-log-current-defun): Fix typo in documentation.Markus Rost2002-07-231-1/+1
|
* (add-log-mailing-address): Fix type. Can be a string.Markus Rost2002-07-231-1/+2
|
* (add-log-mailing-address): Can be a list, too.Colin Walters2002-05-131-8/+20
| | | | | (add-change-log-entry): If `add-log-mailing-address' is a list, then handle it.
* Change all post-21.1 :version attributes to 21.4.Eli Zaretskii2002-05-121-1/+1
|
* (add-log-always-start-new-record): New user option.Sam Steingold2001-10-251-2/+13
|
* (add-change-log-entry): Skip copyright noticeRichard M. Stallman2001-10-061-26/+39
| | | | | | | | and copying permission notice at start of file, if any. Make use of terms "entry" and "item" accord with Emacs manual. Simplify the logic for moving point while entering or creating an entry and then an item. (add-change-log-entry-other-window): Doc fix.
* Keyword added and FSF specified as Maintainer.Pavel Janík2001-08-061-0/+1
|
* (add-log-current-defun): Check major-mode for `cperl-mode' as well.Stefan Monnier2001-03-061-1/+1
|
* (add-log-current-defun-function)Dave Love2001-02-061-4/+4
| | | | | | (add-log-buffer-file-name-function, add-log-file-name-function): Fix :type. (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
* (add-change-log-entry): Only expand-file-name if non-nil.Stefan Monnier2000-12-141-4/+4
|
* (find-change-log): New arg BUFFER-FILE.Stefan Monnier2000-09-291-29/+40
| | | | | | (add-log-file-name): Obey add-log-file-name-function. (add-log-buffer-file-name-function): New var. (add-change-log-entry): Use it.
* (change-log-date-face, change-log-name-face)Gerd Moellmann2000-09-211-12/+59
| | | | | | | | (change-log-email-face, change-log-file-face) (change-log-list-face, change-log-conditionals-face) (change-log-function-face, change-log-acknowledgement-face): New faces, inheriting from font-lock faces. (change-log-font-lock-keywords): Use them.
* (add-log-file-name): New function (split out of add-change-log-entry).Stefan Monnier2000-09-201-25/+28
| | | | | | | (add-change-log-entry): Use it. Call add-log-file-name-function with the changelog file name if the current buffer is not associated with any file. Avoid find-file if the selected window is dedicated.
* (change-log-font-lock-keywords): Match namesGerd Moellmann2000-09-191-1/+1
| | | | | more exactly for the case that font-lock-constant-face is underlined.
* (change-log-merge): Doc fix.Dave Love2000-08-151-10/+30
| | | | (change-log-redate): New command.
* (change-log-font-lock-keywords) <function>: AddDave Love2000-05-311-5/+6
| | | | | | pattern for function of change. (change-log-font-lock-keywords) <acknowledgements>: Amalgamate acknowledgements patterns.
* (add-change-log-entry): Merge the current entry with theStefan Monnier2000-05-261-1/+14
| | | | previous one if the previous one is empty.
* Don't require cl, fortran.Dave Love2000-03-311-219/+169
| | | | | | | | | (add-log-current-defun-function): Doc fix. (change-log-version-number-regexp-list): Remove SCCS stuff. Doc fix. (change-log-mode-map): Defvar directly. (change-log-version-rcs): Function deleted. (change-log-version-number-search): Doc fix.
* (add-log-current-defun): Add support forGerd Moellmann2000-03-021-0/+4
| | | | Autoconf mode.
* (add-change-log-entry): Fix error trying an `(insert nil)'.Gerd Moellmann2000-01-121-1/+1
|
* (add-log-current-defun): Handle user-definedGerd Moellmann2000-01-111-2/+2
| | | | add-log-current-function returning nil,
* (add-change-log-entry): Insert version numberGerd Moellmann2000-01-111-1/+3
| | | | if having found a current function.
* (add-log-current-defun): CallGerd Moellmann2000-01-111-9/+21
| | | | | `add-log-current-defun-function'. Try matches at level 0 and level 1. Strip whitespace from defun found.
* (add-log-debugging): Deleted.Dave Love2000-01-071-14/+76
| | | | | | | | (add-change-log-entry): Treat a backup FILE-NAME as its parent file. Remove debugging code. (change-log-get-method-definition, change-log-name): Add doc. (change-log-sortable-date-at): New function. (change-log-merge): New command.
* (change-log-version-number-regexp-list)Gerd Moellmann1999-12-271-4/+83
| | | | | | | | | | | | | | | | | | | | | | | (change-log-version-info-enabled): Change :version to 21.1. (toplevel): Require CL when compiling. (change-log-version-number-regexp-list): Added tag :version 20.6 (change-log-version-info-enabled): Added tag :version 20.6 More general version number search with user-configurable regexp list. (change-log-version-number-regexp-list): New user variable. (change-log-find-version): Rewritten. Use user-configurable version numbering regexp list change-log-version-number-regexp-list. (change-log-find-version): Renamed to change-log-version-number-search (add-log-file-name-function): New. (change-log-search-vc-number): Added END paramaeter. Added doc string to function. (change-log-version-rcs): Renamed. Was change-log-search-vc-number.
* (add-log-current-defun): Use fortran-{beginning,end}-of-subprogram.Dave Love1999-11-261-2/+2
|
* (change-log-mode-hook): Customize.Dave Love1999-11-261-0/+5
|
* (add-log-current-defun): Exclude all trailing whitespace.Karl Heuer1999-08-161-4/+3
| | | | Handle `enum' like `struct'.
* (add-log-current-defun): Remove trailing -=' in C modes.Richard M. Stallman1999-07-091-0/+5
|
* (add-log-file-name-function): New variable.Richard M. Stallman1999-02-091-6/+17
| | | | (add-change-log-entry): Call that function, if non-nil.
* (change-log-font-lock-keywords): Do parenthesizedDave Love1998-09-081-3/+8
| | | | | stuff only after file names or at start of line. Allow parens around e-mail, as well as angles.