comparison lisp/emacs-lisp/eldoc.el @ 83353:532e0a9335a9

Merged in changes from CVS trunk. Plus added lisp/term tweaks. Patches applied: * lorentey@elte.hu--2004/emacs--cvs-trunk--0--base-0 tag of miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-474 * lorentey@elte.hu--2004/emacs--cvs-trunk--0--patch-1 Add CVS metadata files. * lorentey@elte.hu--2004/emacs--cvs-trunk--0--patch-2 Update from CVS. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-393
author Karoly Lorentey <lorentey@elte.hu>
date Sun, 04 Sep 2005 03:48:17 +0000
parents 6c13700d1c13 efb3c9d498e7
children 2a679c81f552
comparison
equal deleted inserted replaced
83352:b258b3492423 83353:532e0a9335a9
1 ;;; eldoc.el --- show function arglist or variable docstring in echo area 1 ;;; eldoc.el --- show function arglist or variable docstring in echo area
2 2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2003, 2005 3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004,
4 ;; Free Software Foundation, Inc. 4 ;; 2005 Free Software Foundation, Inc.
5 5
6 ;; Author: Noah Friedman <friedman@splode.com> 6 ;; Author: Noah Friedman <friedman@splode.com>
7 ;; Maintainer: friedman@splode.com 7 ;; Maintainer: friedman@splode.com
8 ;; Keywords: extensions 8 ;; Keywords: extensions
9 ;; Created: 1995-10-06 9 ;; Created: 1995-10-06
452 452
453 453
454 ;; Prime the command list. 454 ;; Prime the command list.
455 (eldoc-add-command-completions 455 (eldoc-add-command-completions
456 "backward-" "beginning-of-" "delete-other-windows" "delete-window" 456 "backward-" "beginning-of-" "delete-other-windows" "delete-window"
457 "end-of-" "forward-" "indent-for-tab-command" "goto-" "mouse-set-point" 457 "end-of-" "exchange-point-and-mark" "forward-"
458 "next-" "other-window" "previous-" "recenter" "scroll-" 458 "indent-for-tab-command" "goto-" "mark-page" "mark-paragraph"
459 "self-insert-command" "split-window-" 459 "mouse-set-point" "move-" "pop-global-mark" "next-" "other-window"
460 "up-list" "down-list") 460 "previous-" "recenter" "scroll-" "self-insert-command"
461 "split-window-" "up-list" "down-list")
461 462
462 (provide 'eldoc) 463 (provide 'eldoc)
463 464
464 ;;; arch-tag: c9a58f9d-2055-46c1-9b82-7248b71a8375 465 ;;; arch-tag: c9a58f9d-2055-46c1-9b82-7248b71a8375
465 ;;; eldoc.el ends here 466 ;;; eldoc.el ends here