entered into RCS
[bpt/emacs.git] / lisp / add-log.el
CommitLineData
84fc2cfa
ER
1;;; add-log.el --- change log maintenance commands for Emacs
2
dd309224
RM
3;; Copyright (C) 1985, 86, 87, 88, 89, 90, 91, 1992
4;; Free Software Foundation, Inc.
84fc2cfa
ER
5
6;; This file is part of GNU Emacs.
7
8;; GNU Emacs is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by
fd7fa35a 10;; the Free Software Foundation; either version 2, or (at your option)
84fc2cfa
ER
11;; any later version.
12
13;; GNU Emacs is distributed in the hope that it will be useful,
14;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;; GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public License
19;; along with GNU Emacs; see the file COPYING. If not, write to
20;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21
fd7fa35a 22;;; Code:
84fc2cfa
ER
23
24;;;###autoload
25(defvar change-log-default-name nil
26 "*Name of a change log file for \\[add-change-log-entry].")
27
28(defun change-log-name ()
29 (or change-log-default-name
30 (if (eq system-type 'vax-vms) "$CHANGE_LOG$.TXT" "ChangeLog")))
31
32(defun prompt-for-change-log-name ()
33 "Prompt for a change log name."
34 (let ((default (change-log-name)))
35 (expand-file-name
36 (read-file-name (format "Log file (default %s): " default)
37 nil default))))
38
39;;;###autoload
40(defun add-change-log-entry (&optional whoami file-name other-window)
41 "Find change log file and add an entry for today.
42Optional arg (interactive prefix) non-nil means prompt for user name and site.
43Second arg is file name of change log. If nil, uses `change-log-default-name'.
44Third arg OTHER-WINDOW non-nil means visit in other window."
45 (interactive (list current-prefix-arg
46 (prompt-for-change-log-name)))
dd309224 47 (let* ((full-name (if whoami
84fc2cfa
ER
48 (read-input "Full name: " (user-full-name))
49 (user-full-name)))
50 ;; Note that some sites have room and phone number fields in
51 ;; full name which look silly when inserted. Rather than do
52 ;; anything about that here, let user give prefix argument so that
53 ;; s/he can edit the full name field in prompter if s/he wants.
54 (login-name (if whoami
55 (read-input "Login name: " (user-login-name))
56 (user-login-name)))
57 (site-name (if whoami
58 (read-input "Site name: " (system-name))
21d7e080
ER
59 (system-name)))
60 (defun (add-log-current-defun))
dd309224 61 entry entry-position empty-entry)
84fc2cfa
ER
62 (or file-name
63 (setq file-name (or change-log-default-name
64 default-directory)))
dd309224
RM
65 (setq file-name (if (file-directory-p file-name)
66 (expand-file-name (change-log-name) file-name)
67 (expand-file-name file-name)))
09b389d0
RS
68 ;; Chase links before visiting the file.
69 ;; This makes it easier to use a single change log file
70 ;; for several related directories.
71 (setq file-name (or (file-symlink-p file-name) file-name))
84fc2cfa 72 (set (make-local-variable 'change-log-default-name) file-name)
dd309224
RM
73 (if buffer-file-name
74 (setq entry (if (string-match
75 (concat "^" (regexp-quote (file-name-directory
76 file-name)))
77 buffer-file-name)
78 (substring buffer-file-name (match-end 0))
79 (file-name-nondirectory buffer-file-name))))
1832dbd1
RS
80 ;; Never want to add a change log entry for the ChangeLog file itself.
81 (if (equal entry "ChangeLog")
dd309224
RM
82 (setq entry nil
83 defun nil))
84fc2cfa
ER
84 (if (and other-window (not (equal file-name buffer-file-name)))
85 (find-file-other-window file-name)
86 (find-file file-name))
87 (undo-boundary)
88 (goto-char (point-min))
5516387c
RM
89 (or (looking-at (concat (substring (current-time-string) 0 10)
90 ".* " full-name " (" login-name "@"))
91 (insert (current-time-string)
92 " " full-name
93 " (" login-name
94 "@" site-name ")\n\n"))
84fc2cfa 95 (goto-char (point-min))
21d7e080
ER
96 (setq empty-entry
97 (and (search-forward "\n\t* \n" nil t)
98 (1- (point))))
99 (if (and entry
100 (not empty-entry))
dd309224 101 ;; Look for today's entry for the same file.
21d7e080
ER
102 ;; If there is an empty entry (just a `*'), take the hint and
103 ;; use it. This is so that C-x a from the ChangeLog buffer
104 ;; itself can be used to force the next entry to be added at
105 ;; the beginning, even if there are today's entries for the
106 ;; same file (but perhaps different revisions).
dd309224
RM
107 (let ((entry-boundary (save-excursion
108 (and (re-search-forward "\n[A-Z]" nil t)
109 (point)))))
110 (setq entry-position (save-excursion
111 (and (re-search-forward
112 (concat
113 (regexp-quote (concat "* " entry))
114 ;; don't accept `foo.bar' when
115 ;; looking for `foo':
116 "[ \n\t,:]")
117 entry-boundary
118 t)
119 (1- (match-end 0)))))))
1832dbd1 120 ;; Now insert the new line for this entry.
21d7e080 121 (cond (entry-position
dd309224
RM
122 ;; Move to the existing entry for the same file.
123 (goto-char entry-position)
124 (re-search-forward "^\\s *$")
1832dbd1 125 (beginning-of-line)
09b389d0 126 (while (and (not (eobp)) (looking-at "^\\s *$"))
1832dbd1
RS
127 (delete-region (point) (save-excursion (forward-line 1) (point))))
128 (insert "\n\n")
129 (forward-line -2)
dd309224 130 (indent-relative-maybe))
21d7e080 131 (empty-entry
dd309224
RM
132 ;; Put this file name into the existing empty entry.
133 (goto-char empty-entry)
134 (if entry
135 (insert entry)))
21d7e080 136 (t
dd309224
RM
137 ;; Make a new entry.
138 (forward-line 1)
139 (while (looking-at "\\sW")
140 (forward-line 1))
09b389d0 141 (while (and (not (eobp)) (looking-at "^\\s *$"))
1832dbd1
RS
142 (delete-region (point) (save-excursion (forward-line 1) (point))))
143 (insert "\n\n\n")
144 (forward-line -2)
dd309224
RM
145 (indent-to left-margin)
146 (insert "* " (or entry ""))))
1832dbd1 147 ;; Now insert the function name, if we have one.
21d7e080
ER
148 ;; Point is at the entry for this file,
149 ;; either at the end of the line or at the first blank line.
150 (if defun
151 (progn
dd309224 152 ;; Make it easy to get rid of the function name.
21d7e080 153 (undo-boundary)
dd309224
RM
154 (insert (if (save-excursion
155 (beginning-of-line 1)
156 (looking-at "\\s *$"))
157 ""
158 " ")
159 "(" defun "): "))
1832dbd1 160 ;; No function name, so put in a colon unless we have just a star.
dd309224
RM
161 (if (not (save-excursion
162 (beginning-of-line 1)
163 (looking-at "\\s *\\(\\*\\s *\\)?$")))
1832dbd1 164 (insert ": ")))))
84fc2cfa
ER
165
166;;;###autoload
167(define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
168
169;;;###autoload
170(defun add-change-log-entry-other-window (&optional whoami file-name)
171 "Find change log file in other window and add an entry for today.
172First arg (interactive prefix) non-nil means prompt for user name and site.
173Second arg is file name of change log.
174Interactively, with a prefix argument, the file name is prompted for."
175 (interactive (if current-prefix-arg
176 (list current-prefix-arg
177 (prompt-for-change-log-name))))
178 (add-change-log-entry whoami file-name t))
179
21d7e080 180(defun change-log-mode ()
dd309224 181 "Major mode for editting change logs; like Indented Text Mode.
09b389d0 182Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
5516387c
RM
183New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
184Each entry behaves as a paragraph, and the entries for one day as a page.
185Runs `change-log-mode-hook'."
21d7e080
ER
186 (interactive)
187 (kill-all-local-variables)
188 (indented-text-mode)
189 (setq major-mode 'change-log-mode)
190 (setq mode-name "Change Log")
fd7fa35a
ER
191 (setq left-margin 8)
192 (setq fill-column 74)
21d7e080 193 ;; Let each entry behave as one paragraph:
dd309224
RM
194 (set (make-local-variable 'paragraph-start) "^\\s *$\\|^^L")
195 (set (make-local-variable 'paragraph-separate) "^\\s *$\\|^^L\\|^\\sw")
21d7e080
ER
196 ;; Let all entries for one day behave as one page.
197 ;; Note that a page boundary is also a paragraph boundary.
198 ;; Unfortunately the date line of a page actually belongs to
199 ;; the next day, but I don't see how to avoid that since
200 ;; page moving cmds go to the end of the match, and Emacs
201 ;; regexps don't have a context feature.
202 (set (make-local-variable 'page-delimiter) "^[A-Z][a-z][a-z] .*\n\\|^\f")
dd309224
RM
203 (set (make-local-variable 'version-control) 'never)
204 (set (make-local-variable 'adaptive-fill-regexp) "\\s *")
21d7e080
ER
205 (run-hooks 'change-log-mode-hook))
206
207(defvar add-log-current-defun-header-regexp
208 "^\\([A-Z][A-Z_ ]+\\|[a-z_---A-Z]+\\)[ \t]*[:=]"
209 "*Heuristic regexp used by `add-log-current-defun' for unknown major modes.")
210
211(defun add-log-current-defun ()
212 "Return name of function definition point is in, or nil.
213
214Understands Lisp, LaTeX (\"functions\" are chapters, sections, ...),
215Texinfo (@node titles), and C.
216
217Other modes are handled by a heuristic that looks in the 10K before
218point for uppercase headings starting in the first column or
219identifiers followed by `:' or `=', see variable
220`add-log-current-defun-header-regexp'.
221
222Has a preference of looking backwards."
223 (save-excursion
1832dbd1
RS
224 (let ((location (point)))
225 (cond ((memq major-mode '(emacs-lisp-mode lisp-mode scheme-mode))
226 ;; If we are now precisely a the beginning of a defun,
227 ;; make sure beginning-of-defun finds that one
228 ;; rather than the previous one.
09b389d0 229 (or (eobp) (forward-char 1))
1832dbd1
RS
230 (beginning-of-defun)
231 ;; Make sure we are really inside the defun found, not after it.
09b389d0
RS
232 (if (and (progn (end-of-defun)
233 (< location (point)))
234 (progn (forward-sexp -1)
235 (>= location (point))))
1832dbd1
RS
236 (progn
237 (forward-word 1)
238 (skip-chars-forward " ")
239 (buffer-substring (point)
240 (progn (forward-sexp 1) (point))))))
5516387c 241 ((and (memq major-mode '(c-mode 'c++-mode))
09b389d0 242 (save-excursion (beginning-of-line)
7e9b0c96
RM
243 ;; Use eq instead of = here to avoid
244 ;; error when at bob and char-after
245 ;; returns nil.
246 (while (eq (char-after (- (point) 2)) ?\\)
09b389d0
RS
247 (forward-line -1))
248 (looking-at "[ \t]*#[ \t]*define[ \t]")))
249 ;; Handle a C macro definition.
250 (beginning-of-line)
251 (while (= (char-after (- (point) 2)) ?\\)
252 (forward-line -1))
253 (search-forward "define")
254 (skip-chars-forward " \t")
255 (buffer-substring (point)
256 (progn (forward-sexp 1) (point))))
5516387c 257 ((memq major-mode '(c-mode 'c++-mode))
1832dbd1
RS
258 ;; See if we are in the beginning part of a function,
259 ;; before the open brace. If so, advance forward.
5516387c 260 (while (not (looking-at "{\\|\\(\\s *$\\)"))
1832dbd1 261 (forward-line 1))
5516387c
RM
262 (or (eobp)
263 (forward-char 1))
1832dbd1 264 (beginning-of-defun)
09b389d0
RS
265 (if (progn (end-of-defun)
266 (< location (point)))
1832dbd1 267 (progn
09b389d0
RS
268 (backward-sexp 1)
269 (let (beg tem)
270
271 (forward-line -1)
272 ;; Skip back over typedefs of arglist.
273 (while (and (not (bobp))
274 (looking-at "[ \t\n]"))
275 (forward-line -1))
5516387c
RM
276 ;; See if this is using the DEFUN macro used in Emacs,
277 ;; or the DEFUN macro used by the C library.
278 (if (and (looking-at "DEFUN\\b")
279 (>= location (point)))
09b389d0 280 (progn
09b389d0 281 (down-list 1)
5516387c
RM
282 (if (= (char-after (point)) ?\")
283 (progn
284 (forward-sexp 1)
285 (skip-chars-forward " ,")))
09b389d0
RS
286 (buffer-substring (point)
287 (progn (forward-sexp 1) (point))))
288 ;; Ordinary C function syntax.
289 (setq beg (point))
290 (down-list 1) ; into arglist
291 (backward-up-list 1)
292 (skip-chars-backward " \t")
293 ;; Verify initial pos was after real start of function.
294 (if (and (save-excursion
295 (goto-char beg)
296 ;; For this purpose, include the line
297 ;; that has the decl keywords.
298 ;; This may also include some of the comments
299 ;; before the function.
300 (while (and (not (bobp))
5516387c
RM
301 (save-excursion
302 (forward-line -1)
303 (looking-at "[^\n\f]")))
09b389d0
RS
304 (forward-line -1))
305 (>= location (point)))
306 ;; Consistency check: going down and up
307 ;; shouldn't take us back before BEG.
308 (> (point) beg))
309 (buffer-substring (point)
310 (progn (backward-sexp 1)
311 (point)))))))))
1832dbd1
RS
312 ((memq major-mode
313 '(TeX-mode plain-TeX-mode LaTeX-mode;; tex-mode.el
314 plain-tex-mode latex-mode;; cmutex.el
315 ))
316 (if (re-search-backward
317 "\\\\\\(sub\\)*\\(section\\|paragraph\\|chapter\\)" nil t)
318 (progn
319 (goto-char (match-beginning 0))
320 (buffer-substring (1+ (point));; without initial backslash
321 (progn
322 (end-of-line)
323 (point))))))
324 ((eq major-mode 'texinfo-mode)
325 (if (re-search-backward "^@node[ \t]+\\([^,]+\\)," nil t)
21d7e080 326 (buffer-substring (match-beginning 1)
1832dbd1
RS
327 (match-end 1))))
328 (t
329 ;; If all else fails, try heuristics
330 (let (case-fold-search)
331 (if (re-search-backward add-log-current-defun-header-regexp
332 (- (point) 10000)
333 t)
334 (buffer-substring (match-beginning 1)
335 (match-end 1)))))))))
fd7fa35a
ER
336
337;;; add-log.el ends here