diff options
| author | Glenn Morris | 2008-12-20 03:26:00 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-12-20 03:26:00 +0000 |
| commit | 7ed216d66996f5c41fe2088ae692c8f8f3434501 (patch) | |
| tree | f42a089755050ea035af52c5d7e75612fa5b5922 /lisp | |
| parent | 236fd60db1c9fa1493dc74e38631f45ee57c5c67 (diff) | |
| download | emacs-7ed216d66996f5c41fe2088ae692c8f8f3434501.tar.gz emacs-7ed216d66996f5c41fe2088ae692c8f8f3434501.zip | |
(comint-save-input-ring-index): Add missing initial value.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/comint.el | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dad06617fe5..067b190102a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-12-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * comint.el (comint-save-input-ring-index): Add missing initial value. | ||
| 4 | |||
| 1 | 2008-12-19 Juanma Barranquero <lekktu@gmail.com> | 5 | 2008-12-19 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * proced.el (proced-grammar-alist): Doc fix. | 7 | * proced.el (proced-grammar-alist): Doc fix. |
diff --git a/lisp/comint.el b/lisp/comint.el index 69887aa22c8..d8a4a032ad9 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | ;;; comint.el --- general command interpreter in a window stuff | 1 | ;;; comint.el --- general command interpreter in a window stuff |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1988, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | 3 | ;; Copyright (C) 1988, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
| 4 | ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | 4 | ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
| 5 | ;; Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | ;; Author: Olin Shivers <shivers@cs.cmu.edu> | 7 | ;; Author: Olin Shivers <shivers@cs.cmu.edu> |
| 7 | ;; Simon Marshall <simon@gnu.org> | 8 | ;; Simon Marshall <simon@gnu.org> |
| @@ -555,7 +556,7 @@ This is to work around a bug in Emacs process signaling.") | |||
| 555 | "Index of last matched history element.") | 556 | "Index of last matched history element.") |
| 556 | (defvar comint-matching-input-from-input-string "" | 557 | (defvar comint-matching-input-from-input-string "" |
| 557 | "Input previously used to match input history.") | 558 | "Input previously used to match input history.") |
| 558 | (defvar comint-save-input-ring-index | 559 | (defvar comint-save-input-ring-index nil |
| 559 | "Last input ring index which you copied. | 560 | "Last input ring index which you copied. |
| 560 | This is to support the command \\[comint-get-next-from-history].") | 561 | This is to support the command \\[comint-get-next-from-history].") |
| 561 | 562 | ||