]> git.eshelyaron.com Git - emacs.git/commitdiff
(comint-save-input-ring-index): Add missing initial value.
authorGlenn Morris <rgm@gnu.org>
Sat, 20 Dec 2008 03:26:00 +0000 (03:26 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 20 Dec 2008 03:26:00 +0000 (03:26 +0000)
lisp/ChangeLog
lisp/comint.el

index dad06617fe58851425259c1b2f1379bc7586392b..067b190102a3ccd2a2a5b677e92bd508cedb6d33 100644 (file)
@@ -1,3 +1,7 @@
+2008-12-20  Glenn Morris  <rgm@gnu.org>
+
+       * comint.el (comint-save-input-ring-index): Add missing initial value.
+
 2008-12-19  Juanma Barranquero  <lekktu@gmail.com>
 
        * proced.el (proced-grammar-alist): Doc fix.
index 69887aa22c8d1b6f8d09b383765bfb57d16b9501..d8a4a032ad964c320c703147facc1d9ff8dcdfb5 100644 (file)
@@ -1,7 +1,8 @@
 ;;; comint.el --- general command interpreter in a window stuff
 
 ;; Copyright (C) 1988, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-;;   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+;;   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
+;;   Free Software Foundation, Inc.
 
 ;; Author: Olin Shivers <shivers@cs.cmu.edu>
 ;;     Simon Marshall <simon@gnu.org>
@@ -555,7 +556,7 @@ This is to work around a bug in Emacs process signaling.")
   "Index of last matched history element.")
 (defvar comint-matching-input-from-input-string ""
   "Input previously used to match input history.")
-(defvar comint-save-input-ring-index
+(defvar comint-save-input-ring-index nil
   "Last input ring index which you copied.
 This is to support the command \\[comint-get-next-from-history].")