From a9adeed791c47d4d9268b829e0aa9f40d1905a33 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 21 Jun 2006 05:09:32 +0000 Subject: lisp/play/cookie1.el (cookie): Work properly when there's only one entry Revision: emacs@sv.gnu.org/emacs--devo--0--patch-323 --- lisp/play/cookie1.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp/play/cookie1.el') diff --git a/lisp/play/cookie1.el b/lisp/play/cookie1.el index bc4ee84da2f..7a2e6c602ea 100644 --- a/lisp/play/cookie1.el +++ b/lisp/play/cookie1.el @@ -1,6 +1,6 @@ ;;; cookie1.el --- retrieve random phrases from fortune cookie files -;; Copyright (C) 1993, 2002, 2003, 2004, 2005, +;; Copyright (C) 1993, 2002, 2003, 2004, 2005, 2006, ;; 2006 Free Software Foundation, Inc. ;; Author: Eric S. Raymond @@ -75,7 +75,7 @@ When the phrase file is read in, display STARTMSG at the beginning of load, ENDMSG at the end." (let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg))) (shuffle-vector cookie-vector) - (aref cookie-vector 1))) + (aref cookie-vector 0))) ;;;###autoload (defun cookie-insert (phrase-file &optional count startmsg endmsg) -- cgit v1.2.1