Mercurial > emacs
annotate lisp/chistory.el @ 20892:18f3cb26243f before-miles-orphaned-changes gcc-2_8_1-980401 gcc-2_8_1-980407 gcc-2_8_1-980412 gcc-2_8_1-980413 gcc-2_8_1-RELEASE gcc_2_8_1-980315 libc-980214 libc-980215 libc-980216 libc-980217 libc-980218 libc-980219 libc-980220 libc-980221 libc-980222 libc-980223 libc-980224 libc-980225 libc-980226 libc-980227 libc-980228 libc-980301 libc-980302 libc-980303 libc-980304 libc-980306 libc-980307 libc-980308 libc-980309 libc-980310 libc-980311 libc-980312 libc-980313 libc-980314 libc-980315 libc-980316 libc-980317 libc-980318 libc-980319 libc-980320 libc-980321 libc-980322 libc-980323 libc-980324 libc-980325 libc-980326 libc-980327 libc-980328 libc-980329 libc-980330 libc-980331 libc-980401 libc-980402 libc-980403 libc-980404 libc-980405 libc-980406 libc-980407 libc-980408 libc-980409 libc-980410 libc-980411 libc-980412 libc-980413 libc-980414 libc-980428 libc-980429 libc-980430 libc-980501 libc-980502 libc-980503 libc-980504 libc-980505 libc-980506 libc-980507 libc-980508 libc-980509 libc-980510 libc-980512 libc-980513 libc-980514 libc-980515 libc-980516 libc-980517 libc-980518 libc-980519 libc-980520 libc-980521 libc-980522 libc-980523 libc-980524 libc-980525 libc-980526 libc-980527 libc-980528 libc-980529 libc-980530 libc-980531 libc-980601 libc-980602 libc-980603 libc-980604 libc-980605 libc-980606 libc-980607 libc-980608 libc-980609 libc-980610 libc-980611 libc-980612 libc-980613
Add PentiumII (i786). Add '7' to all i[3456] entries.
Add AMD and Cyrix names for P5 and P6.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Fri, 13 Feb 1998 12:16:46 +0000 |
parents | 83f275dcd93a |
children | ac1673121774 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; chistory.el --- list command history |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 ;; Author: K. Shane Hartman |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
6 ;; Maintainer: FSF |
411 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
411 | 13 ;; any later version. |
14 | |
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. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
411 | 24 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 ;;; Commentary: |
411 | 26 |
27 ;; This really has nothing to do with list-command-history per se, but | |
9626
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
28 ;; its a nice alternative to C-x ESC ESC (repeat-complex-command) and |
411 | 29 ;; functions as a lister if given no pattern. It's not important |
30 ;; enough to warrant a file of its own. | |
31 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
32 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
33 |
411 | 34 ;;;###autoload |
35 (defun repeat-matching-complex-command (&optional pattern) | |
36 "Edit and re-evaluate complex command with name matching PATTERN. | |
37 Matching occurrences are displayed, most recent first, until you select | |
38 a form for evaluation. If PATTERN is empty (or nil), every form in the | |
39 command history is offered. The form is placed in the minibuffer for | |
40 editing and the result is evaluated." | |
41 (interactive "sRedo Command (regexp): ") | |
42 (if pattern | |
9626
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
43 (if (string-match "[^ \t]" pattern) |
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
44 (setq pattern (substring pattern (match-beginning 0))) |
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
45 (setq pattern nil))) |
411 | 46 (let ((history command-history) |
47 (temp) | |
48 (what)) | |
49 (while (and history (not what)) | |
50 (setq temp (car history)) | |
51 (if (and (or (not pattern) (string-match pattern (symbol-name (car temp)))) | |
9626
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
52 (y-or-n-p (format "Redo %S? " temp))) |
411 | 53 (setq what (car history)) |
54 (setq history (cdr history)))) | |
55 (if (not what) | |
56 (error "Command history exhausted") | |
57 ;; Try to remove any useless command history element for this command. | |
58 (if (eq (car (car command-history)) 'repeat-matching-complex-command) | |
59 (setq command-history (cdr command-history))) | |
60 (edit-and-eval-command "Redo: " what)))) | |
61 | |
62 (defvar default-command-history-filter-garbage | |
63 '(command-history-mode | |
64 list-command-history | |
65 electric-command-history) | |
9626
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
66 "*A list of symbols to be ignored by `default-command-history-filter'. |
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
67 It that function is given a list whose car is an element of this list, |
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
68 then it will return non-nil (indicating the list should be discarded from |
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
69 the history). |
411 | 70 Initially, all commands related to the command history are discarded.") |
71 | |
72 (defvar list-command-history-filter 'default-command-history-filter | |
9626
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
73 "Predicate to test which commands should be excluded from the history listing. |
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
74 If non-nil, should be the name of a function of one argument. |
411 | 75 It is passed each element of the command history when |
76 \\[list-command-history] is called. If the filter returns non-nil for | |
77 some element, that element is excluded from the history listing. The | |
78 default filter removes commands associated with the command-history.") | |
79 | |
80 (defun default-command-history-filter (frob) | |
81 "Filter commands matching `default-command-history-filter-garbage' list | |
82 from the command history." | |
83 (or (not (consp frob)) | |
84 (memq (car frob) default-command-history-filter-garbage))) | |
85 | |
86 (defvar list-command-history-max 32 | |
9626
e928e72d3342
(repeat-matching-complex-command): Fix check for empty pattern. Simplify.
Karl Heuer <kwzh@gnu.org>
parents:
2452
diff
changeset
|
87 "*If non-nil, maximum length of the listing produced by `list-command-history'.") |
411 | 88 |
89 ;;;###autoload | |
90 (defun list-command-history () | |
91 "List history of commands typed to minibuffer. | |
92 The number of commands listed is controlled by `list-command-history-max'. | |
93 Calls value of `list-command-history-filter' (if non-nil) on each history | |
94 element to judge if that element should be excluded from the list. | |
95 | |
96 The buffer is left in Command History mode." | |
97 (interactive) | |
98 (with-output-to-temp-buffer | |
99 "*Command History*" | |
100 (let ((history command-history) | |
101 (buffer-read-only nil) | |
102 (count (or list-command-history-max -1))) | |
103 (while (and (/= count 0) history) | |
104 (if (and (boundp 'list-command-history-filter) | |
105 list-command-history-filter | |
106 (funcall list-command-history-filter (car history))) | |
107 nil | |
108 (setq count (1- count)) | |
109 (prin1 (car history)) | |
110 (terpri)) | |
111 (setq history (cdr history)))) | |
112 (save-excursion | |
113 (set-buffer "*Command History*") | |
114 (goto-char (point-min)) | |
115 (if (eobp) | |
116 (error "No command history") | |
117 (Command-history-setup))))) | |
118 | |
119 (defun Command-history-setup (&optional majormode modename keymap) | |
120 (set-buffer "*Command History*") | |
121 (use-local-map (or keymap command-history-map)) | |
122 (lisp-mode-variables nil) | |
123 (set-syntax-table emacs-lisp-mode-syntax-table) | |
124 (setq buffer-read-only t) | |
125 (use-local-map (or keymap command-history-map)) | |
126 (setq major-mode (or majormode 'command-history-mode)) | |
127 (setq mode-name (or modename "Command History"))) | |
128 | |
129 (defvar command-history-hook nil | |
130 "If non-nil, its value is called on entry to `command-history-mode'.") | |
131 | |
132 (defvar command-history-map nil) | |
133 (if command-history-map | |
134 nil | |
135 (setq command-history-map | |
136 (nconc (make-sparse-keymap) shared-lisp-mode-map)) | |
137 (suppress-keymap command-history-map) | |
138 (define-key command-history-map "x" 'command-history-repeat) | |
139 (define-key command-history-map "\n" 'next-line) | |
140 (define-key command-history-map "\r" 'next-line) | |
141 (define-key command-history-map "\177" 'previous-line)) | |
142 | |
143 (defun command-history-repeat () | |
144 "Repeat the command shown on the current line. | |
145 The buffer for that command is the previous current buffer." | |
146 (interactive) | |
147 (save-excursion | |
148 (eval (prog1 | |
149 (save-excursion | |
150 (beginning-of-line) | |
151 (read (current-buffer))) | |
152 (set-buffer | |
2452
5c9d9b33f249
(repeat-history-command): Bug fix. Someone forgot a car.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
153 (car (cdr (buffer-list)))))))) |
411 | 154 |
155 ;;;###autoload | |
156 (defun command-history-mode () | |
157 "Major mode for examining commands from `command-history'. | |
158 The number of commands listed is controlled by `list-command-history-max'. | |
159 The command history is filtered by `list-command-history-filter' if non-nil. | |
160 Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line. | |
161 | |
162 Otherwise much like Emacs-Lisp Mode except that there is no self-insertion | |
163 and digits provide prefix arguments. Tab does not indent. | |
164 \\{command-history-map} | |
165 Calls the value of `command-history-hook' if that is non-nil. | |
166 The Command History listing is recomputed each time this mode is invoked." | |
167 (interactive) | |
168 (list-command-history) | |
169 (pop-to-buffer "*Command History*") | |
170 (run-hooks 'command-history-hook)) | |
584 | 171 |
172 (provide 'chistory) | |
173 | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
174 ;;; chistory.el ends here |