1 ;;; add-log.el --- change log maintenance commands for Emacs
3 ;; Copyright (C) 1985, 1986, 1988, 1993, 1994, 1997, 1998, 2000, 2001,
4 ;; 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; This facility is documented in the Emacs Manual.
30 ;; - Find/use/create _MTN/log if there's a _MTN directory.
31 ;; - Find/use/create ++log.* if there's an {arch} directory.
32 ;; - Use an open *VC-Log* or *cvs-commit* buffer if it's related to the
34 ;; - Don't add TAB indents (and username?) if inserting entries in those
42 (defgroup change-log nil
43 "Change log maintenance."
45 :link
'(custom-manual "(emacs)Change Log")
50 (defcustom change-log-default-name nil
51 "Name of a change log file for \\[add-change-log-entry]."
52 :type
'(choice (const :tag
"default" nil
)
56 (put 'change-log-default-name
'safe-local-variable
'string-or-null-p
)
58 (defcustom change-log-mode-hook nil
59 "Normal hook run by `change-log-mode'."
63 ;; Many modes set this variable, so avoid warnings.
65 (defcustom add-log-current-defun-function nil
66 "If non-nil, function to guess name of surrounding function.
67 It is used by `add-log-current-defun' in preference to built-in rules.
68 Returns function's name as a string, or nil if outside a function."
69 :type
'(choice (const nil
) function
)
73 (defcustom add-log-full-name nil
74 "Full name of user, for inclusion in ChangeLog daily headers.
75 This defaults to the value returned by the function `user-full-name'."
76 :type
'(choice (const :tag
"Default" nil
)
81 (defcustom add-log-mailing-address nil
82 "Email addresses of user, for inclusion in ChangeLog headers.
83 This defaults to the value of `user-mail-address'. In addition to
84 being a simple string, this value can also be a list. All elements
85 will be recognized as referring to the same user; when creating a new
86 ChangeLog entry, one element will be chosen at random."
87 :type
'(choice (const :tag
"Default" nil
)
88 (string :tag
"String")
89 (repeat :tag
"List of Strings" string
))
92 (defcustom add-log-time-format
'add-log-iso8601-time-string
93 "Function that defines the time format.
94 For example, `add-log-iso8601-time-string', which gives the
95 date in international ISO 8601 format,
96 and `current-time-string' are two valid values."
97 :type
'(radio (const :tag
"International ISO 8601 format"
98 add-log-iso8601-time-string
)
99 (const :tag
"Old format, as returned by `current-time-string'"
101 (function :tag
"Other"))
104 (defcustom add-log-keep-changes-together nil
105 "If non-nil, normally keep day's log entries for one file together.
107 Log entries for a given file made with \\[add-change-log-entry] or
108 \\[add-change-log-entry-other-window] will only be added to others \
110 today if this variable is non-nil or that file comes first in today's
111 entries. Otherwise another entry for that file will be started. An
115 * bar (...): change 1
117 in the latter case, \\[add-change-log-entry-other-window] in a \
118 buffer visiting `bar', yields:
122 * bar (...): change 1
127 * bar (...): change 1
130 The NEW-ENTRY arg to `add-change-log-entry' can override the effect of
136 (defcustom add-log-always-start-new-record nil
137 "If non-nil, `add-change-log-entry' will always start a new record."
142 (defcustom add-log-buffer-file-name-function nil
143 "If non-nil, function to call to identify the full filename of a buffer.
144 This function is called with no argument. If this is nil, the default is to
145 use `buffer-file-name'."
146 :type
'(choice (const nil
) function
)
149 (defcustom add-log-file-name-function nil
150 "If non-nil, function to call to identify the filename for a ChangeLog entry.
151 This function is called with one argument, the value of variable
152 `buffer-file-name' in that buffer. If this is nil, the default is to
153 use the file's name relative to the directory of the change log file."
154 :type
'(choice (const nil
) function
)
158 (defcustom change-log-version-info-enabled nil
159 "If non-nil, enable recording version numbers with the changes."
164 (defcustom change-log-version-number-regexp-list
165 (let ((re "\\([0-9]+\.[0-9.]+\\)"))
167 ;; (defconst ad-version "2.15"
168 (concat "^(def[^ \t\n]+[ \t]+[^ \t\n][ \t]\"" re
)
169 ;; Revision: pcl-cvs.el,v 1.72 1999/09/05 20:21:54 monnier Exp
170 (concat "^;+ *Revision: +[^ \t\n]+[ \t]+" re
)))
171 "List of regexps to search for version number.
172 The version number must be in group 1.
173 Note: The search is conducted only within 10%, at the beginning of the file."
175 :type
'(repeat regexp
)
178 (defface change-log-date
179 '((t (:inherit font-lock-string-face
)))
180 "Face used to highlight dates in date lines."
183 ;; backward-compatibility alias
184 (put 'change-log-date-face
'face-alias
'change-log-date
)
186 (defface change-log-name
187 '((t (:inherit font-lock-constant-face
)))
188 "Face for highlighting author names."
191 ;; backward-compatibility alias
192 (put 'change-log-name-face
'face-alias
'change-log-name
)
194 (defface change-log-email
195 '((t (:inherit font-lock-variable-name-face
)))
196 "Face for highlighting author email addresses."
199 ;; backward-compatibility alias
200 (put 'change-log-email-face
'face-alias
'change-log-email
)
202 (defface change-log-file
203 '((t (:inherit font-lock-function-name-face
)))
204 "Face for highlighting file names."
207 ;; backward-compatibility alias
208 (put 'change-log-file-face
'face-alias
'change-log-file
)
210 (defface change-log-list
211 '((t (:inherit font-lock-keyword-face
)))
212 "Face for highlighting parenthesized lists of functions or variables."
215 ;; backward-compatibility alias
216 (put 'change-log-list-face
'face-alias
'change-log-list
)
218 (defface change-log-conditionals
219 '((t (:inherit font-lock-variable-name-face
)))
220 "Face for highlighting conditionals of the form `[...]'."
223 ;; backward-compatibility alias
224 (put 'change-log-conditionals-face
'face-alias
'change-log-conditionals
)
226 (defface change-log-function
227 '((t (:inherit font-lock-variable-name-face
)))
228 "Face for highlighting items of the form `<....>'."
231 ;; backward-compatibility alias
232 (put 'change-log-function-face
'face-alias
'change-log-function
)
234 (defface change-log-acknowledgement
235 '((t (:inherit font-lock-comment-face
)))
236 "Face for highlighting acknowledgments."
239 ;; backward-compatibility alias
240 (put 'change-log-acknowledgement-face
'face-alias
'change-log-acknowledgement
)
242 (defconst change-log-file-names-re
"^\\( +\\|\t\\)\\* \\([^ ,:([\n]+\\)")
243 (defconst change-log-start-entry-re
"^\\sw.........[0-9:+ ]*")
245 (defvar change-log-font-lock-keywords
247 ;; Date lines, new (2000-01-01) and old (Sat Jan 1 00:00:00 2000) styles.
248 ;; Fixme: this regepx is just an approximate one and may match
249 ;; wrongly with a non-date line existing as a random note. In
250 ;; addition, using any kind of fixed setting like this doesn't
251 ;; work if a user customizes add-log-time-format.
252 ("^[0-9-]+ +\\|^\\(Sun\\|Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\) [A-z][a-z][a-z] [0-9:+ ]+"
253 (0 'change-log-date-face
)
254 ;; Name and e-mail; some people put e-mail in parens, not angles.
255 ("\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" nil nil
257 (2 'change-log-email
)))
260 (,change-log-file-names-re
262 ;; Possibly further names in a list:
263 ("\\=, \\([^ ,:([\n]+\\)" nil nil
(1 'change-log-file
))
264 ;; Possibly a parenthesized list of names:
265 ("\\= (\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
266 nil nil
(1 'change-log-list
))
267 ("\\=, *\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
268 nil nil
(1 'change-log-list
)))
270 ;; Function or variable names.
271 ("^\\( +\\|\t\\)(\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)"
273 ("\\=, *\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)" nil nil
274 (1 'change-log-list
)))
277 ("\\[!?\\([^]\n]+\\)\\]\\(:\\| (\\)" (1 'change-log-conditionals
))
279 ;; Function of change.
280 ("<\\([^>\n]+\\)>\\(:\\| (\\)" (1 'change-log-function
))
283 ;; Don't include plain "From" because that is vague;
284 ;; we want to encourage people to say something more specific.
285 ;; Note that the FSF does not use "Patches by"; our convention
286 ;; is to put the name of the author of the changes at the top
287 ;; of the change log entry.
288 ("\\(^\\( +\\|\t\\)\\| \\)\\(Patch\\(es\\)? by\\|Report\\(ed by\\| from\\)\\|Suggest\\(ed by\\|ion from\\)\\)"
289 3 'change-log-acknowledgement
))
290 "Additional expressions to highlight in Change Log mode.")
292 (defun change-log-search-file-name (where)
293 "Return the file-name for the change under point."
296 (beginning-of-line 1)
297 (if (looking-at change-log-start-entry-re
)
298 ;; We are at the start of an entry, search forward for a file
301 (re-search-forward change-log-file-names-re nil t
)
302 (match-string-no-properties 2))
303 (if (looking-at change-log-file-names-re
)
304 ;; We found a file name.
305 (match-string-no-properties 2)
306 ;; Look backwards for either a file name or the log entry start.
307 (if (re-search-backward
308 (concat "\\(" change-log-start-entry-re
310 change-log-file-names-re
"\\)") nil t
)
311 (if (match-beginning 1)
312 ;; We got the start of the entry, look forward for a
315 (re-search-forward change-log-file-names-re nil t
)
316 (match-string-no-properties 2))
317 (match-string-no-properties 4))
318 ;; We must be before any file name, look forward.
319 (re-search-forward change-log-file-names-re nil t
)
320 (match-string-no-properties 2))))))
322 (defun change-log-find-file ()
323 "Visit the file for the change under point."
325 (let ((file (change-log-search-file-name (point))))
326 (if (and file
(file-exists-p file
))
328 (message "No such file or directory: %s" file
))))
330 (defun change-log-search-tag-name-1 (&optional from
)
331 "Search for a tag name within subexpression 1 of last match.
332 Optional argument FROM specifies a buffer position where the tag
333 name should be located. Return value is a cons whose car is the
334 string representing the tag and whose cdr is the position where
337 (narrow-to-region (match-beginning 1) (match-end 1))
338 (when from
(goto-char from
))
339 ;; The regexp below skips any symbol near `point' (FROM) followed by
340 ;; whitespace and another symbol. This should skip, for example,
341 ;; "struct" in a specification like "(struct buffer)" and move to
342 ;; "buffer". A leading paren is ignored.
344 "[(]?\\(?:\\(?:\\sw\\|\\s_\\)+\\(?:[ \t]+\\(\\sw\\|\\s_\\)+\\)\\)")
345 (goto-char (match-beginning 1)))
346 (cons (find-tag-default) (point))))
348 (defconst change-log-tag-re
349 "(\\(\\(?:\\sw\\|\\s_\\)+\\(?:[, \t]+\\(?:\\sw\\|\\s_\\)+\\)*\\))"
350 "Regexp matching a tag name in change log entries.")
352 (defun change-log-search-tag-name (&optional at
)
353 "Search for a tag name near `point'.
354 Optional argument AT non-nil means search near buffer position AT.
355 Return value is a cons whose car is the string representing
356 the tag and whose cdr is the position where the tag was found."
358 (goto-char (setq at
(or at
(point))))
361 (or (condition-case nil
362 ;; Within parenthesized list?
365 (when (looking-at change-log-tag-re
)
366 (change-log-search-tag-name-1 at
)))
369 ;; Before parenthesized list on same line?
371 (when (and (skip-chars-forward " \t")
372 (looking-at change-log-tag-re
))
373 (change-log-search-tag-name-1)))
380 (looking-at change-log-file-names-re
))
381 (goto-char (match-end 0))
382 (skip-syntax-forward " ")
383 (looking-at change-log-tag-re
))
384 (change-log-search-tag-name-1)))
387 ;; Anywhere else within current entry?
391 (if (re-search-backward change-log-start-entry-re nil t
)
397 (if (re-search-forward change-log-start-entry-re nil t
)
400 (when (and (< from to
) (<= from at
) (<= at to
))
402 ;; Narrow to current change log entry.
403 (narrow-to-region from to
)
405 ((re-search-backward change-log-tag-re nil t
)
406 (narrow-to-region (match-beginning 1) (match-end 1))
407 (goto-char (point-max))
408 (cons (find-tag-default) (point-max)))
409 ((re-search-forward change-log-tag-re nil t
)
410 (narrow-to-region (match-beginning 1) (match-end 1))
411 (goto-char (point-min))
412 (cons (find-tag-default) (point-min)))))))
415 (defvar change-log-find-head nil
)
416 (defvar change-log-find-tail nil
)
417 (defvar change-log-find-window nil
)
419 (defun change-log-goto-source-1 (tag regexp file buffer
420 &optional window first last
)
421 "Search for tag TAG in buffer BUFFER visiting file FILE.
422 REGEXP is a regular expression for TAG. The remaining arguments
423 are optional: WINDOW denotes the window to display the results of
424 the search. FIRST is a position in BUFFER denoting the first
425 match from previous searches for TAG. LAST is the position in
426 BUFFER denoting the last match for TAG in the last search."
427 (with-current-buffer buffer
433 ;; When LAST is set make sure we continue from the next
434 ;; line end to not find the same tag again.
438 ;; Try to go to the end of the current defun to avoid
439 ;; false positives within the current defun's body
440 ;; since these would match `add-log-current-defun'.
442 ;; Don't fall behind when `end-of-defun' fails.
443 (error (progn (goto-char last
) (end-of-line))))
445 ;; When LAST was not set start at beginning of BUFFER.
446 (goto-char (point-min)))
448 (while (and (not last
) (re-search-forward regexp nil t
))
449 ;; Verify that `add-log-current-defun' invoked at the end
450 ;; of the match returns TAG. This heuristic works well
451 ;; whenever the name of the defun occurs within the first
452 ;; line of the defun.
453 (setq current-defun
(add-log-current-defun))
454 (when (and current-defun
(string-equal current-defun
tag))
455 ;; Record this as last match.
456 (setq last
(line-beginning-position))
457 ;; Record this as first match when there's none.
458 (unless first
(setq first last
)))))))
460 (with-selected-window
461 (setq change-log-find-window
(or window
(display-buffer buffer
)))
464 (when (or (< last
(point-min)) (> last
(point-max)))
465 ;; Widen to show TAG.
469 ;; When there are no more matches go (back) to FIRST.
470 (message "No more matches for tag `%s' in file `%s'" tag file
)
473 ;; Return new "tail".
474 (list (selected-window) first last
))
475 (message "Source location of tag `%s' not found in file `%s'" tag file
)
478 (defun change-log-goto-source ()
479 "Go to source location of \"change log tag\" near `point'.
480 A change log tag is a symbol within a parenthesized,
481 comma-separated list. If no suitable tag can be found nearby,
482 try to visit the file for the change under `point' instead."
484 (if (and (eq last-command
'change-log-goto-source
)
485 change-log-find-tail
)
486 (setq change-log-find-tail
488 (apply 'change-log-goto-source-1
489 (append change-log-find-head change-log-find-tail
))
491 (format "Cannot find more matches for tag `%s' in file `%s'"
492 (car change-log-find-head
)
493 (nth 2 change-log-find-head
)))))
496 (tag-at (change-log-search-tag-name))
498 (file (when tag-at
(change-log-search-file-name (cdr tag-at
))))
499 (file-at (when file
(match-beginning 2)))
500 ;; `file-2' is the file `change-log-search-file-name' finds
501 ;; at `point'. We use `file-2' as a fallback when `tag' or
502 ;; `file' are not suitable for some reason.
503 (file-2 (change-log-search-file-name at
))
504 (file-2-at (when file-2
(match-beginning 2))))
506 ((and (or (not tag
) (not file
) (not (file-exists-p file
)))
507 (or (not file-2
) (not (file-exists-p file-2
))))
508 (error "Cannot find tag or file near `point'"))
509 ((and file-2
(file-exists-p file-2
)
510 (or (not tag
) (not file
) (not (file-exists-p file
))
511 (and (or (and (< file-at file-2-at
) (<= file-2-at at
))
512 (and (<= at file-2-at
) (< file-2-at file-at
))))))
513 ;; We either have not found a suitable file name or `file-2'
514 ;; provides a "better" file name wrt `point'. Go to the
515 ;; buffer of `file-2' instead.
516 (setq change-log-find-window
517 (display-buffer (find-file-noselect file-2
))))
519 (setq change-log-find-head
520 (list tag
(concat "\\_<" (regexp-quote tag
) "\\_>")
521 file
(find-file-noselect file
)))
523 (setq change-log-find-tail
524 (apply 'change-log-goto-source-1 change-log-find-head
))
526 (format "Cannot find matches for tag `%s' in file `%s'"
529 (defun change-log-next-error (&optional argp reset
)
530 "Move to the Nth (default 1) next match in a ChangeLog buffer.
531 Compatibility function for \\[next-error] invocations."
533 (let* ((argp (or argp
0))
534 (count (abs argp
)) ; how many cycles
535 (down (< argp
0)) ; are we going down? (is argp negative?)
537 (search-function (if up
're-search-forward
're-search-backward
)))
539 ;; set the starting position
540 (goto-char (cond (reset (point-min))
541 (down (line-beginning-position))
542 (up (line-end-position))
545 (funcall search-function change-log-file-names-re nil t count
))
548 ;; if we found a place to visit...
549 (when (looking-at change-log-file-names-re
)
550 (let (change-log-find-window)
551 (change-log-goto-source)
552 (when change-log-find-window
553 ;; Select window displaying source file.
554 (select-window change-log-find-window
)))))
556 (defvar change-log-mode-map
557 (let ((map (make-sparse-keymap)))
558 (define-key map
[?\C-c ?\C-p
] 'add-log-edit-prev-comment
)
559 (define-key map
[?\C-c ?\C-n
] 'add-log-edit-next-comment
)
560 (define-key map
[?\C-c ?\C-f
] 'change-log-find-file
)
561 (define-key map
[?\C-c ?\C-c
] 'change-log-goto-source
)
563 "Keymap for Change Log major mode.")
565 ;; It used to be called change-log-time-zone-rule but really should be
566 ;; called add-log-time-zone-rule since it's only used from add-log-* code.
567 (defvaralias 'change-log-time-zone-rule
'add-log-time-zone-rule
)
568 (defvar add-log-time-zone-rule nil
569 "Time zone used for calculating change log time stamps.
570 It takes the same format as the TZ argument of `set-time-zone-rule'.
571 If nil, use local time.
572 If t, use universal time.")
573 (put 'add-log-time-zone-rule
'safe-local-variable
574 '(lambda (x) (or (booleanp x
) (stringp x
))))
576 (defun add-log-iso8601-time-zone (&optional time
)
577 (let* ((utc-offset (or (car (current-time-zone time
)) 0))
578 (sign (if (< utc-offset
0) ?- ?
+))
579 (sec (abs utc-offset
))
584 (format (cond ((not (zerop ss
)) "%c%02d:%02d:%02d")
585 ((not (zerop mm
)) "%c%02d:%02d")
589 (defvar add-log-iso8601-with-time-zone nil
)
591 (defun add-log-iso8601-time-string ()
592 (let ((time (format-time-string "%Y-%m-%d"
593 nil
(eq t add-log-time-zone-rule
))))
594 (if add-log-iso8601-with-time-zone
595 (concat time
" " (add-log-iso8601-time-zone))
598 (defun change-log-name ()
599 "Return (system-dependent) default name for a change log file."
600 (or change-log-default-name
603 (defun add-log-edit-prev-comment (arg)
604 "Cycle backward through Log-Edit mode comment history.
605 With a numeric prefix ARG, go back ARG comments."
608 (narrow-to-region (point)
609 (if (memq last-command
'(add-log-edit-prev-comment
610 add-log-edit-next-comment
))
612 (when (fboundp 'log-edit-previous-comment
)
613 (log-edit-previous-comment arg
)
614 (indent-region (point-min) (point-max))
615 (goto-char (point-min))
616 (unless (save-restriction (widen) (bolp))
617 (delete-region (point) (progn (skip-chars-forward " \t\n") (point))))
618 (set-mark (point-min))
619 (goto-char (point-max))
620 (delete-region (point) (progn (skip-chars-backward " \t\n") (point))))))
622 (defun add-log-edit-next-comment (arg)
623 "Cycle forward through Log-Edit mode comment history.
624 With a numeric prefix ARG, go back ARG comments."
626 (add-log-edit-prev-comment (- arg
)))
629 (defun prompt-for-change-log-name ()
630 "Prompt for a change log name."
631 (let* ((default (change-log-name))
632 (name (expand-file-name
633 (read-file-name (format "Log file (default %s): " default
)
635 ;; Handle something that is syntactically a directory name.
636 ;; Look for ChangeLog or whatever in that directory.
637 (if (string= (file-name-nondirectory name
) "")
638 (expand-file-name (file-name-nondirectory default
)
640 ;; Handle specifying a file that is a directory.
641 (if (file-directory-p name
)
642 (expand-file-name (file-name-nondirectory default
)
643 (file-name-as-directory name
))
646 (defun change-log-version-number-search ()
647 "Return version number of current buffer's file.
648 This is the value returned by `vc-working-revision' or, if that is
649 nil, by matching `change-log-version-number-regexp-list'."
650 (let* ((size (buffer-size))
652 ;; The version number can be anywhere in the file, but
653 ;; restrict search to the file beginning: 10% should be
654 ;; enough to prevent some mishits.
656 ;; Apply percentage only if buffer size is bigger than
658 (if (> size
(* 100 80)) (+ (point) (/ size
10)))))
659 (or (and buffer-file-name
(vc-working-revision buffer-file-name
))
662 (let ((regexps change-log-version-number-regexp-list
)
666 (goto-char (point-min))
667 (when (re-search-forward (pop regexps
) limit t
)
668 (setq version
(match-string 1)
672 (declare-function diff-find-source-location
"diff-mode"
673 (&optional other-file reverse noprompt
))
676 (defun find-change-log (&optional file-name buffer-file
)
677 "Find a change log file for \\[add-change-log-entry] and return the name.
679 Optional arg FILE-NAME specifies the file to use.
680 If FILE-NAME is nil, use the value of `change-log-default-name'.
681 If `change-log-default-name' is nil, behave as though it were 'ChangeLog'
682 \(or whatever we use on this operating system).
684 If `change-log-default-name' contains a leading directory component, then
685 simply find it in the current directory. Otherwise, search in the current
686 directory and its successive parents for a file so named.
688 Once a file is found, `change-log-default-name' is set locally in the
689 current buffer to the complete file name.
690 Optional arg BUFFER-FILE overrides `buffer-file-name'."
691 ;; If we are called from a diff, first switch to the source buffer;
692 ;; in order to respect buffer-local settings of change-log-default-name, etc.
693 (with-current-buffer (let ((buff (if (eq major-mode
'diff-mode
)
695 (diff-find-source-location))))))
696 (if (buffer-live-p buff
) buff
698 ;; If user specified a file name or if this buffer knows which one to use,
701 (setq file-name
(and change-log-default-name
702 (file-name-directory change-log-default-name
)
703 change-log-default-name
))
705 ;; Chase links in the source file
706 ;; and use the change log in the dir where it points.
707 (setq file-name
(or (and (or buffer-file buffer-file-name
)
710 (or buffer-file buffer-file-name
))))
712 (if (file-directory-p file-name
)
713 (setq file-name
(expand-file-name (change-log-name) file-name
)))
714 ;; Chase links before visiting the file.
715 ;; This makes it easier to use a single change log file
716 ;; for several related directories.
717 (setq file-name
(file-chase-links file-name
))
718 (setq file-name
(expand-file-name file-name
))
719 ;; Move up in the dir hierarchy till we find a change log file.
720 (let ((file1 file-name
)
722 (while (and (not (or (get-file-buffer file1
) (file-exists-p file1
)))
723 (progn (setq parent-dir
726 (file-name-directory file1
))))
727 ;; Give up if we are already at the root dir.
728 (not (string= (file-name-directory file1
)
730 ;; Move up to the parent dir and try again.
731 (setq file1
(expand-file-name
732 (file-name-nondirectory (change-log-name))
734 ;; If we found a change log in a parent, use that.
735 (if (or (get-file-buffer file1
) (file-exists-p file1
))
736 (setq file-name file1
)))))
737 ;; Make a local variable in this buffer so we needn't search again.
738 (set (make-local-variable 'change-log-default-name
) file-name
))
741 (defun add-log-file-name (buffer-file log-file
)
742 ;; Never want to add a change log entry for the ChangeLog file itself.
743 (unless (or (null buffer-file
) (string= buffer-file log-file
))
744 (if add-log-file-name-function
745 (funcall add-log-file-name-function buffer-file
)
747 (file-relative-name buffer-file
(file-name-directory log-file
)))
748 ;; If we have a backup file, it's presumably because we're
749 ;; comparing old and new versions (e.g. for deleted
750 ;; functions) and we'll want to use the original name.
751 (if (backup-file-name-p buffer-file
)
752 (file-name-sans-versions buffer-file
)
756 (defun add-change-log-entry (&optional whoami file-name other-window new-entry
757 put-new-entry-on-new-line
)
758 "Find change log file, and add an entry for today and an item for this file.
759 Optional arg WHOAMI (interactive prefix) non-nil means prompt for user
760 name and email (stored in `add-log-full-name' and `add-log-mailing-address').
762 Second arg FILE-NAME is file name of the change log.
763 If nil, use the value of `change-log-default-name'.
765 Third arg OTHER-WINDOW non-nil means visit in other window.
767 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
768 never append to an existing entry. Option `add-log-keep-changes-together'
769 otherwise affects whether a new entry is created.
771 Fifth arg PUT-NEW-ENTRY-ON-NEW-LINE non-nil means that if a new
772 entry is created, put it on a new line by itself, do not put it
773 after a comma on an existing line.
775 Option `add-log-always-start-new-record' non-nil means always create a
776 new record, even when the last record was made on the same date and by
779 The change log file can start with a copyright notice and a copying
780 permission notice. The first blank line indicates the end of these
783 Today's date is calculated according to `add-log-time-zone-rule' if
784 non-nil, otherwise in local time."
785 (interactive (list current-prefix-arg
786 (prompt-for-change-log-name)))
787 (let* ((defun (add-log-current-defun))
788 (version (and change-log-version-info-enabled
789 (change-log-version-number-search)))
790 (buf-file-name (if add-log-buffer-file-name-function
791 (funcall add-log-buffer-file-name-function
)
793 (buffer-file (if buf-file-name
(expand-file-name buf-file-name
)))
794 (file-name (expand-file-name (find-change-log file-name buffer-file
)))
795 ;; Set ITEM to the file name to use in the new item.
796 (item (add-log-file-name buffer-file file-name
)))
798 (unless (equal file-name buffer-file-name
)
799 (if (or other-window
(window-dedicated-p (selected-window)))
800 (find-file-other-window file-name
)
801 (find-file file-name
)))
802 (or (derived-mode-p 'change-log-mode
)
805 (goto-char (point-min))
807 (let ((full-name (or add-log-full-name
(user-full-name)))
808 (mailing-address (or add-log-mailing-address user-mail-address
)))
811 (setq full-name
(read-string "Full name: " full-name
))
812 ;; Note that some sites have room and phone number fields in
813 ;; full name which look silly when inserted. Rather than do
814 ;; anything about that here, let user give prefix argument so that
815 ;; s/he can edit the full name field in prompter if s/he wants.
816 (setq mailing-address
817 (read-string "Mailing address: " mailing-address
)))
819 ;; If file starts with a copyright and permission notice, skip them.
820 ;; Assume they end at first blank line.
821 (when (looking-at "Copyright")
822 (search-forward "\n\n")
823 (skip-chars-forward "\n"))
825 ;; Advance into first entry if it is usable; else make new one.
827 (mapcar (lambda (addr)
829 (if (stringp add-log-time-zone-rule
)
830 (let ((tz (getenv "TZ")))
833 (set-time-zone-rule add-log-time-zone-rule
)
834 (funcall add-log-time-format
))
835 (set-time-zone-rule tz
)))
836 (funcall add-log-time-format
))
839 (if (consp mailing-address
)
841 (list mailing-address
)))))
842 (if (and (not add-log-always-start-new-record
)
844 (dolist (entry new-entries hit
)
845 (when (looking-at (regexp-quote entry
))
848 (insert (nth (random (length new-entries
))
850 (if use-hard-newlines hard-newline
"\n")
851 (if use-hard-newlines hard-newline
"\n"))
854 ;; Determine where we should stop searching for a usable
855 ;; item to add to, within this entry.
858 (if (looking-at "\n*[^\n* \t]")
859 (skip-chars-forward "\n")
860 (if add-log-keep-changes-together
861 (forward-page) ; page delimits entries for date
862 (forward-paragraph))) ; paragraph delimits entries for file
865 ;; Now insert the new line for this item.
866 (cond ((re-search-forward "^\\s *\\*\\s *$" bound t
)
867 ;; Put this file name into the existing empty item.
870 ((and (not new-entry
)
871 (let (case-fold-search)
873 (concat (regexp-quote (concat "* " item
))
874 ;; Don't accept `foo.bar' when
875 ;; looking for `foo':
876 "\\(\\s \\|[(),:]\\)")
878 ;; Add to the existing item for the same file.
879 (re-search-forward "^\\s *$\\|^\\s \\*")
880 (goto-char (match-beginning 0))
881 ;; Delete excess empty lines; make just 2.
882 (while (and (not (eobp)) (looking-at "^\\s *$"))
883 (delete-region (point) (line-beginning-position 2)))
884 (insert (if use-hard-newlines hard-newline
"\n")
885 (if use-hard-newlines hard-newline
"\n"))
887 (indent-relative-maybe))
890 (while (looking-at "\\sW")
892 (while (and (not (eobp)) (looking-at "^\\s *$"))
893 (delete-region (point) (line-beginning-position 2)))
894 (insert (if use-hard-newlines hard-newline
"\n")
895 (if use-hard-newlines hard-newline
"\n")
896 (if use-hard-newlines hard-newline
"\n"))
898 (indent-to left-margin
)
900 (if item
(insert item
)))))
901 ;; Now insert the function name, if we have one.
902 ;; Point is at the item for this file,
903 ;; either at the end of the line or at the first blank line.
905 ;; No function name, so put in a colon unless we have just a star.
906 (unless (save-excursion
907 (beginning-of-line 1)
908 (looking-at "\\s *\\(\\*\\s *\\)?$"))
910 (if version
(insert version ?\s
)))
911 ;; Make it easy to get rid of the function name.
913 (unless (save-excursion
914 (beginning-of-line 1)
915 (looking-at "\\s *$"))
917 ;; See if the prev function name has a message yet or not.
918 ;; If not, merge the two items.
919 (let ((pos (point-marker)))
920 (skip-syntax-backward " ")
921 (skip-chars-backward "):")
922 (if (and (not put-new-entry-on-new-line
)
924 (let ((pos (save-excursion (backward-sexp 1) (point))))
925 (when (equal (buffer-substring pos
(point)) defun
)
926 (delete-region pos
(point)))
927 (> fill-column
(+ (current-column) (length defun
) 4))))
928 (progn (skip-chars-backward ", ")
929 (delete-region (point) pos
)
930 (unless (memq (char-before) '(?\
()) (insert ", ")))
931 (when (and (not put-new-entry-on-new-line
) (looking-at "):"))
932 (delete-region (+ 1 (point)) (line-end-position)))
935 (set-marker pos nil
))
937 (if version
(insert version ?\s
)))))
940 (defun add-change-log-entry-other-window (&optional whoami file-name
)
941 "Find change log file in other window and add entry and item.
942 This is just like `add-change-log-entry' except that it displays
943 the change log file in another window."
944 (interactive (if current-prefix-arg
945 (list current-prefix-arg
946 (prompt-for-change-log-name))))
947 (add-change-log-entry whoami file-name t
))
950 (defvar change-log-indent-text
0)
952 (defun change-log-fill-parenthesized-list ()
953 ;; Fill parenthesized lists of names according to GNU standards.
954 ;; * file-name.ext (very-long-foo, very-long-bar, very-long-foobar):
955 ;; should be filled as
956 ;; * file-name.ext (very-long-foo, very-long-bar)
957 ;; (very-long-foobar):
960 (skip-chars-backward " \t")
961 (when (and (equal (char-before) ?\
,)
962 (> (point) (1+ (point-min))))
964 (when (save-excursion
967 (equal (char-after) ?\
()
968 (skip-chars-backward " \t"))
970 ;; Skip everything but a whitespace or asterisk.
971 (and (not (zerop (skip-chars-backward "^ \t\n*")))
972 (skip-chars-backward " \t")
973 ;; We want one asterisk here.
974 (= (skip-chars-backward "*") -
1)
975 (skip-chars-backward " \t")
979 ;; Close list on previous line.
981 (skip-chars-forward " \t\n")
982 ;; Start list on new line.
983 (insert-before-markers "("))
986 (defun change-log-indent ()
987 (change-log-fill-parenthesized-list)
991 (skip-chars-forward " \t")
993 ((and (looking-at "\\(.*\\) [^ \n].*[^ \n] <.*>\\(?: +(.*)\\)? *$")
994 ;; Matching the output of add-log-time-format is difficult,
995 ;; but I'll get it has at least two adjacent digits.
996 (string-match "[[:digit:]][[:digit:]]" (match-string 1)))
998 ((looking-at "[^*(]")
999 (+ (current-left-margin) change-log-indent-text
))
1000 (t (current-left-margin)))))
1001 (pos (save-excursion (indent-line-to indent
) (point))))
1002 (if (> pos
(point)) (goto-char pos
))))
1005 (defvar smerge-resolve-function
)
1006 (defvar copyright-at-end-flag
)
1009 (define-derived-mode change-log-mode text-mode
"Change Log"
1010 "Major mode for editing change logs; like Indented Text mode.
1011 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
1012 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
1013 Each entry behaves as a paragraph, and the entries for one day as a page.
1014 Runs `change-log-mode-hook'.
1015 \n\\{change-log-mode-map}"
1020 show-trailing-whitespace t
)
1021 (set (make-local-variable 'fill-paragraph-function
)
1022 'change-log-fill-paragraph
)
1023 ;; Avoid that filling leaves behind a single "*" on a line.
1024 (add-hook 'fill-nobreak-predicate
1026 (looking-back "^\\s *\\*\\s *" (line-beginning-position)))
1028 (set (make-local-variable 'indent-line-function
) 'change-log-indent
)
1029 (set (make-local-variable 'tab-always-indent
) nil
)
1030 (set (make-local-variable 'copyright-at-end-flag
) t
)
1031 ;; We really do want "^" in paragraph-start below: it is only the
1032 ;; lines that begin at column 0 (despite the left-margin of 8) that
1033 ;; we are looking for. Adding `* ' allows eliding the blank line
1034 ;; between entries for different files.
1035 (set (make-local-variable 'paragraph-start
) "\\s *$\\|\f\\|^\\<")
1036 (set (make-local-variable 'paragraph-separate
) paragraph-start
)
1037 ;; Match null string on the date-line so that the date-line
1038 ;; is grouped with what follows.
1039 (set (make-local-variable 'page-delimiter
) "^\\<\\|^\f")
1040 (set (make-local-variable 'version-control
) 'never
)
1041 (set (make-local-variable 'smerge-resolve-function
)
1042 'change-log-resolve-conflict
)
1043 (set (make-local-variable 'adaptive-fill-regexp
) "\\s *")
1044 (set (make-local-variable 'font-lock-defaults
)
1045 '(change-log-font-lock-keywords t nil nil backward-paragraph
))
1046 (set (make-local-variable 'multi-isearch-next-buffer-function
)
1047 'change-log-next-buffer
)
1048 (set (make-local-variable 'beginning-of-defun-function
)
1049 'change-log-beginning-of-defun
)
1050 (set (make-local-variable 'end-of-defun-function
)
1051 'change-log-end-of-defun
)
1052 ;; next-error function glue
1053 (setq next-error-function
'change-log-next-error
)
1054 (setq next-error-last-buffer
(current-buffer)))
1056 (defun change-log-next-buffer (&optional buffer wrap
)
1057 "Return the next buffer in the series of ChangeLog file buffers.
1058 This function is used for multiple buffers isearch.
1059 A sequence of buffers is formed by ChangeLog files with decreasing
1060 numeric file name suffixes in the directory of the initial ChangeLog
1061 file were isearch was started."
1062 (let* ((name (change-log-name))
1063 (files (cons name
(sort (file-expand-wildcards
1064 (concat name
"[-.][0-9]*"))
1066 ;; The file's extension may not have a valid
1067 ;; version form (e.g. VC backup revisions).
1069 (version< (substring b
(length name
))
1070 (substring a
(length name
))))))))
1071 (files (if isearch-forward files
(reverse files
))))
1075 (cadr (member (file-name-nondirectory (buffer-file-name buffer
))
1078 ;; It might be nice to have a general feature to replace this. The idea I
1079 ;; have is a variable giving a regexp matching text which should not be
1080 ;; moved from bol by filling. change-log-mode would set this to "^\\s *\\s(".
1081 ;; But I don't feel up to implementing that today.
1082 (defun change-log-fill-paragraph (&optional justify
)
1083 "Fill the paragraph, but preserve open parentheses at beginning of lines.
1084 Prefix arg means justify as well."
1086 (let ((end (progn (forward-paragraph) (point)))
1087 (beg (progn (backward-paragraph) (point)))
1088 ;; Add lines starting with whitespace followed by a left paren or an
1090 (paragraph-start (concat paragraph-start
"\\|\\s *\\(?:\\s(\\|\\*\\)"))
1091 ;; Make sure we call `change-log-indent'.
1092 (fill-indent-according-to-mode t
))
1093 (fill-region beg end justify
)
1096 (defcustom add-log-current-defun-header-regexp
1097 "^\\([[:upper:]][[:upper:]_ ]*[[:upper:]_]\\|[-_[:alpha:]]+\\)[ \t]*[:=]"
1098 "Heuristic regexp used by `add-log-current-defun' for unknown major modes."
1103 (defvar add-log-lisp-like-modes
1104 '(emacs-lisp-mode lisp-mode scheme-mode dsssl-mode lisp-interaction-mode
)
1105 "*Modes that look like Lisp to `add-log-current-defun'.")
1108 (defvar add-log-c-like-modes
1109 '(c-mode c
++-mode c
++-c-mode objc-mode
)
1110 "*Modes that look like C to `add-log-current-defun'.")
1113 (defvar add-log-tex-like-modes
1114 '(TeX-mode plain-TeX-mode LaTeX-mode tex-mode
)
1115 "*Modes that look like TeX to `add-log-current-defun'.")
1117 (declare-function c-cpp-define-name
"cc-cmds" ())
1118 (declare-function c-defun-name
"cc-cmds" ())
1121 (defun add-log-current-defun ()
1122 "Return name of function definition point is in, or nil.
1124 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
1125 Texinfo (@node titles) and Perl.
1127 Other modes are handled by a heuristic that looks in the 10K before
1128 point for uppercase headings starting in the first column or
1129 identifiers followed by `:' or `='. See variables
1130 `add-log-current-defun-header-regexp' and
1131 `add-log-current-defun-function'.
1133 Has a preference of looking backwards."
1136 (let ((location (point)))
1137 (cond (add-log-current-defun-function
1138 (funcall add-log-current-defun-function
))
1139 ((apply 'derived-mode-p add-log-lisp-like-modes
)
1140 ;; If we are now precisely at the beginning of a defun,
1141 ;; make sure beginning-of-defun finds that one
1142 ;; rather than the previous one.
1143 (or (eobp) (forward-char 1))
1144 (beginning-of-defun)
1145 ;; Make sure we are really inside the defun found,
1147 (when (and (looking-at "\\s(")
1148 (progn (end-of-defun)
1149 (< location
(point)))
1150 (progn (forward-sexp -
1)
1151 (>= location
(point))))
1152 (if (looking-at "\\s(")
1154 ;; Skip the defining construct name, typically "defun"
1157 ;; The second element is usually a symbol being defined.
1158 ;; If it is not, use the first symbol in it.
1159 (skip-chars-forward " \t\n'(")
1160 (buffer-substring-no-properties (point)
1161 (progn (forward-sexp 1)
1163 ((apply 'derived-mode-p add-log-c-like-modes
)
1164 (or (c-cpp-define-name)
1166 ((memq major-mode add-log-tex-like-modes
)
1167 (if (re-search-backward
1168 "\\\\\\(sub\\)*\\(section\\|paragraph\\|chapter\\)"
1171 (goto-char (match-beginning 0))
1172 (buffer-substring-no-properties
1173 (1+ (point)) ; without initial backslash
1174 (line-end-position)))))
1175 ((derived-mode-p 'texinfo-mode
)
1176 (if (re-search-backward "^@node[ \t]+\\([^,\n]+\\)" nil t
)
1177 (match-string-no-properties 1)))
1178 ((derived-mode-p 'perl-mode
'cperl-mode
)
1179 (if (re-search-backward "^sub[ \t]+\\([^({ \t\n]+\\)" nil t
)
1180 (match-string-no-properties 1)))
1181 ;; Emacs's autoconf-mode installs its own
1182 ;; `add-log-current-defun-function'. This applies to
1183 ;; a different mode apparently for editing .m4
1185 ((derived-mode-p 'autoconf-mode
)
1186 (if (re-search-backward
1187 "^\\(\\(m4_\\)?define\\|A._DEFUN\\)(\\[?\\([A-Za-z0-9_]+\\)" nil t
)
1188 (match-string-no-properties 3)))
1190 ;; If all else fails, try heuristics
1191 (let (case-fold-search
1194 (when (re-search-backward
1195 add-log-current-defun-header-regexp
1198 (setq result
(or (match-string-no-properties 1)
1199 (match-string-no-properties 0)))
1200 ;; Strip whitespace away
1201 (when (string-match "\\([^ \t\n\r\f].*[^ \t\n\r\f]\\)"
1203 (setq result
(match-string-no-properties 1 result
)))
1207 (defvar change-log-get-method-definition-md
)
1209 ;; Subroutine used within change-log-get-method-definition.
1210 ;; Add the last match in the buffer to the end of `md',
1211 ;; followed by the string END; move to the end of that match.
1212 (defun change-log-get-method-definition-1 (end)
1213 (setq change-log-get-method-definition-md
1214 (concat change-log-get-method-definition-md
1217 (goto-char (match-end 0)))
1219 (defun change-log-get-method-definition ()
1220 "For Objective C, return the method name if we are in a method."
1221 (let ((change-log-get-method-definition-md "["))
1223 (if (re-search-backward "^@implementation\\s-*\\([A-Za-z_]*\\)" nil t
)
1224 (change-log-get-method-definition-1 " ")))
1227 ((re-search-forward "^\\([-+]\\)[ \t\n\f\r]*\\(([^)]*)\\)?\\s-*" nil t
)
1228 (change-log-get-method-definition-1 "")
1229 (while (not (looking-at "[{;]"))
1231 "\\([A-Za-z_]*:?\\)\\s-*\\(([^)]*)\\)?[A-Za-z_]*[ \t\n\f\r]*")
1232 (change-log-get-method-definition-1 ""))
1233 (concat change-log-get-method-definition-md
"]"))))))
1235 (defun change-log-sortable-date-at ()
1236 "Return date of log entry in a consistent form for sorting.
1237 Point is assumed to be at the start of the entry."
1239 (if (looking-at change-log-start-entry-re
)
1240 (let ((date (match-string-no-properties 0)))
1242 (if (string-match "\\(....\\)-\\(..\\)-\\(..\\)\\s-+" date
)
1243 (concat (match-string 1 date
) (match-string 2 date
)
1244 (match-string 3 date
))
1246 (timezone-make-date-sortable date
)
1248 (error "Bad date")))
1250 (defun change-log-resolve-conflict ()
1251 "Function to be used in `smerge-resolve-function'."
1254 (narrow-to-region (match-beginning 0) (match-end 0))
1255 (let ((mb1 (match-beginning 1))
1257 (mb3 (match-beginning 3))
1259 (tmp1 (generate-new-buffer " *changelog-resolve-1*"))
1260 (tmp2 (generate-new-buffer " *changelog-resolve-2*")))
1262 (let ((buf (current-buffer)))
1263 (with-current-buffer tmp1
1265 (insert-buffer-substring buf mb1 me1
))
1266 (with-current-buffer tmp2
1268 (insert-buffer-substring buf mb3 me3
)
1269 ;; Do the merge here instead of inside `buf' so as to be
1270 ;; more robust in case change-log-merge fails.
1271 (change-log-merge tmp1
))
1272 (goto-char (point-max))
1273 (delete-region (point-min)
1275 (insert-buffer-substring tmp2
))))
1277 (kill-buffer tmp2
))))))
1280 (defun change-log-merge (other-log)
1281 "Merge the contents of change log file OTHER-LOG with this buffer.
1282 Both must be found in Change Log mode (since the merging depends on
1283 the appropriate motion commands). OTHER-LOG can be either a file name
1286 Entries are inserted in chronological order. Both the current and
1287 old-style time formats for entries are supported."
1288 (interactive "*fLog file name to merge: ")
1289 (if (not (derived-mode-p 'change-log-mode
))
1290 (error "Not in Change Log mode"))
1291 (let ((other-buf (if (bufferp other-log
) other-log
1292 (find-file-noselect other-log
)))
1293 (buf (current-buffer))
1296 (goto-char (point-min))
1297 (set-buffer other-buf
)
1298 (goto-char (point-min))
1299 (if (not (derived-mode-p 'change-log-mode
))
1300 (error "%s not found in Change Log mode" other-log
))
1301 ;; Loop through all the entries in OTHER-LOG.
1303 (setq date1
(change-log-sortable-date-at))
1305 end
(progn (forward-page) (point)))
1306 ;; Look for an entry in original buffer that isn't later.
1307 (with-current-buffer buf
1308 (while (and (not (eobp))
1309 (string< date1
(change-log-sortable-date-at)))
1312 (insert-buffer-substring other-buf start end
)
1313 ;; At the end of the original buffer, insert a newline to
1314 ;; separate entries and then the rest of the file being
1317 (and (= ?
\n (char-before))
1318 (or (<= (1- (point)) (point-min))
1319 (= ?
\n (char-before (1- (point)))))))
1320 (insert (if use-hard-newlines hard-newline
"\n")))
1321 ;; Move to the end of it to terminate outer loop.
1322 (with-current-buffer other-buf
1323 (goto-char (point-max)))
1324 (insert-buffer-substring other-buf start
)))))))
1326 (defun change-log-beginning-of-defun ()
1327 (re-search-backward change-log-start-entry-re nil
'move
))
1329 (defun change-log-end-of-defun ()
1330 ;; Look back and if there is no entry there it means we are before
1331 ;; the first ChangeLog entry, so go forward until finding one.
1332 (unless (save-excursion (re-search-backward change-log-start-entry-re nil t
))
1333 (re-search-forward change-log-start-entry-re nil t
))
1335 ;; In case we are at the end of log entry going forward a line will
1336 ;; make us find the next entry when searching. If we are inside of
1337 ;; an entry going forward a line will still keep the point inside
1341 ;; In case we are at the beginning of an entry, move past it.
1342 (when (looking-at change-log-start-entry-re
)
1343 (goto-char (match-end 0))
1346 ;; Search for the start of the next log entry. Go to the end of the
1347 ;; buffer if we could not find a next entry.
1348 (when (re-search-forward change-log-start-entry-re nil
'move
)
1349 (goto-char (match-beginning 0))
1354 ;; arch-tag: 81eee6fc-088f-4372-a37f-80ad9620e762
1355 ;;; add-log.el ends here