comparison lisp/chistory.el @ 584:4cd7543be581

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Mar 1992 20:39:07 +0000
parents cb75ab565260
children 8a533acedb77
comparison
equal deleted inserted replaced
583:3c0c1cd8428a 584:4cd7543be581
16 16
17 ;; You should have received a copy of the GNU General Public License 17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING. If not, write to 18 ;; along with GNU Emacs; see the file COPYING. If not, write to
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 20
21
22 (provide 'chistory)
23 21
24 ;; This really has nothing to do with list-command-history per se, but 22 ;; This really has nothing to do with list-command-history per se, but
25 ;; its a nice alternative to C-x ESC (repeat-complex-command) and 23 ;; its a nice alternative to C-x ESC (repeat-complex-command) and
26 ;; functions as a lister if given no pattern. It's not important 24 ;; functions as a lister if given no pattern. It's not important
27 ;; enough to warrant a file of its own. 25 ;; enough to warrant a file of its own.
163 The Command History listing is recomputed each time this mode is invoked." 161 The Command History listing is recomputed each time this mode is invoked."
164 (interactive) 162 (interactive)
165 (list-command-history) 163 (list-command-history)
166 (pop-to-buffer "*Command History*") 164 (pop-to-buffer "*Command History*")
167 (run-hooks 'command-history-hook)) 165 (run-hooks 'command-history-hook))
166
167 (provide 'chistory)
168