1 ;;; makesum.el --- generate key binding summary for Emacs
3 ;; Copyright (C) 1985 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 (defun make-command-summary ()
28 "Make a summary of current key bindings in the buffer *Summary*.
29 Previous contents of that buffer are killed first."
31 (message "Making command summary...")
32 ;; This puts a description of bindings in a buffer called *Help*.
33 (save-window-excursion
35 (with-output-to-temp-buffer "*Summary*"
37 (let ((cur-mode mode-name
))
38 (set-buffer standard-output
)
40 (insert-buffer-substring "*Help*")
41 (goto-char (point-min))
42 (delete-region (point) (progn (forward-line 1) (point)))
43 (while (search-forward " " nil t
)
45 (goto-char (point-min))
46 (while (search-forward "-@ " nil t
)
47 (replace-match "-SP"))
48 (goto-char (point-min))
49 (while (search-forward " .. ~ " nil t
)
50 (replace-match "SP .. ~"))
51 (goto-char (point-min))
52 (while (search-forward "C-?" nil t
)
53 (replace-match "DEL"))
54 (goto-char (point-min))
55 (while (search-forward "C-i" nil t
)
56 (replace-match "TAB"))
57 (goto-char (point-min))
58 (if (re-search-forward "^Local Bindings:" nil t
)
61 (insert " for " cur-mode
" Mode")
62 (while (search-forward "??\n" nil t
)
63 (delete-region (point)
67 (goto-char (point-min))
68 (insert "Emacs command summary, " (substring (current-time-string) 0 10)
70 ;; Delete "key binding" and underlining of dashes.
71 (delete-region (point) (progn (forward-line 2) (point)))
72 (forward-line 1) ;Skip blank line
75 (or (re-search-forward "^$" nil t
)
76 (goto-char (point-max)))
77 (double-column beg
(point))
79 (goto-char (point-min)))))
80 (message "Making command summary...done"))
82 (defun double-column (start end
)
86 (from-end (- (point-max) end
)))
87 (setq nlines
(count-lines start end
))
90 (setq half
(/ (1+ nlines
) 2))
94 (while (< half nlines
)
96 (setq line
(buffer-substring (point) (save-excursion (end-of-line) (point))))
97 (setq lines
(cons line lines
))
98 (delete-region (point) (progn (forward-line 1) (point)))))
99 (setq lines
(nreverse lines
))
105 (setq lines
(cdr lines
))))
106 (goto-char (- (point-max) from-end
))))
108 ;;; makesum.el ends here