emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lispref/minibuf.texi


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lispref/minibuf.texi
Date: Fri, 04 Apr 2003 01:23:23 -0500

Index: emacs/lispref/minibuf.texi
diff -c emacs/lispref/minibuf.texi:1.31 emacs/lispref/minibuf.texi:1.32
*** emacs/lispref/minibuf.texi:1.31     Sat Dec  7 16:42:16 2002
--- emacs/lispref/minibuf.texi  Tue Feb  4 09:47:54 2003
***************
*** 1,7 ****
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001
! @c   Free Software Foundation, Inc. 
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/minibuf
  @node Minibuffers, Command Loop, Read and Print, Top
--- 1,7 ----
  @c -*-texinfo-*-
  @c This is part of the GNU Emacs Lisp Reference Manual.
  @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2001
! @c   Free Software Foundation, Inc.
  @c See the file elisp.texi for copying conditions.
  @setfilename ../info/minibuf
  @node Minibuffers, Command Loop, Read and Print, Top
***************
*** 374,380 ****
  @group
  (edit-and-eval-command "Please edit: " '(forward-word 1))
  
! ;; @r{After evaluation of the preceding expression,} 
  ;;   @r{the following appears in the minibuffer:}
  @end group
  
--- 374,380 ----
  @group
  (edit-and-eval-command "Please edit: " '(forward-word 1))
  
! ;; @r{After evaluation of the preceding expression,}
  ;;   @r{the following appears in the minibuffer:}
  @end group
  
***************
*** 582,588 ****
  
  @smallexample
  @group
! (try-completion 
   "foo"
   '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
       @result{} "fooba"
--- 582,588 ----
  
  @smallexample
  @group
! (try-completion
   "foo"
   '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)))
       @result{} "fooba"
***************
*** 612,625 ****
  
  @smallexample
  @group
! (defun test (s) 
    (> (length (car s)) 6))
       @result{} test
  @end group
  @group
! (try-completion 
   "foo"
!  '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4)) 
   'test)
       @result{} "foobar"
  @end group
--- 612,625 ----
  
  @smallexample
  @group
! (defun test (s)
    (> (length (car s)) 6))
       @result{} test
  @end group
  @group
! (try-completion
   "foo"
!  '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
   'test)
       @result{} "foobar"
  @end group
***************
*** 642,654 ****
  
  @smallexample
  @group
! (defun test (s) 
    (> (length (car s)) 6))
       @result{} test
  @end group
  
  @group
! (all-completions  
   "foo"
   '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
   'test)
--- 642,654 ----
  
  @smallexample
  @group
! (defun test (s)
    (> (length (car s)) 6))
       @result{} test
  @end group
  
  @group
! (all-completions
   "foo"
   '(("foobar1" 1) ("barfoo" 2) ("foobaz" 3) ("foobar2" 4))
   'test)
***************
*** 658,664 ****
  @end defun
  
  @defvar completion-ignore-case
! If the value of this variable is 
  address@hidden, Emacs does not consider case significant in completion.
  @end defvar
  
--- 658,664 ----
  @end defun
  
  @defvar completion-ignore-case
! If the value of this variable is
  address@hidden, Emacs does not consider case significant in completion.
  @end defvar
  
***************
*** 738,744 ****
  @end group
  
  @group
! ;; @r{After evaluation of the preceding expression,} 
  ;;   @r{the following appears in the minibuffer:}
  
  ---------- Buffer: Minibuffer ----------
--- 738,744 ----
  @end group
  
  @group
! ;; @r{After evaluation of the preceding expression,}
  ;;   @r{the following appears in the minibuffer:}
  
  ---------- Buffer: Minibuffer ----------
***************
*** 923,929 ****
  @example
  (read-buffer "Buffer name? " "foo" t)
  @group
! ;; @r{After evaluation of the preceding expression,} 
  ;;   @r{the following prompt appears,}
  ;;   @r{with an empty minibuffer:}
  @end group
--- 923,929 ----
  @example
  (read-buffer "Buffer name? " "foo" t)
  @group
! ;; @r{After evaluation of the preceding expression,}
  ;;   @r{the following prompt appears,}
  ;;   @r{with an empty minibuffer:}
  @end group
***************
*** 965,977 ****
  (read-command "Command name? ")
  
  @group
! ;; @r{After evaluation of the preceding expression,} 
  ;;   @r{the following prompt appears with an empty minibuffer:}
  @end group
  
  @group
! ---------- Buffer: Minibuffer ---------- 
! Command name?  
  ---------- Buffer: Minibuffer ----------
  @end group
  @end example
--- 965,977 ----
  (read-command "Command name? ")
  
  @group
! ;; @r{After evaluation of the preceding expression,}
  ;;   @r{the following prompt appears with an empty minibuffer:}
  @end group
  
  @group
! ---------- Buffer: Minibuffer ----------
! Command name?
  ---------- Buffer: Minibuffer ----------
  @end group
  @end example
***************
*** 990,996 ****
  @group
  (read-command @var{prompt})
  @equiv{}
! (intern (completing-read @var{prompt} obarray 
                           'commandp t nil))
  @end group
  @end example
--- 990,996 ----
  @group
  (read-command @var{prompt})
  @equiv{}
! (intern (completing-read @var{prompt} obarray
                           'commandp t nil))
  @end group
  @end example
***************
*** 1010,1017 ****
  @group
  (read-variable "Variable name? ")
  
! ;; @r{After evaluation of the preceding expression,} 
! ;;   @r{the following prompt appears,} 
  ;;   @r{with an empty minibuffer:}
  @end group
  
--- 1010,1017 ----
  @group
  (read-variable "Variable name? ")
  
! ;; @r{After evaluation of the preceding expression,}
! ;;   @r{the following prompt appears,}
  ;;   @r{with an empty minibuffer:}
  @end group
  
***************
*** 1080,1092 ****
  @var{initial} does, try the command @kbd{C-x C-v}.  @strong{Note:} we
  recommend using @var{default} rather than @var{initial} in most cases.
  
! Here is an example: 
  
  @example
  @group
  (read-file-name "The file is ")
  
! ;; @r{After evaluation of the preceding expression,} 
  ;;   @r{the following appears in the minibuffer:}
  @end group
  
--- 1080,1092 ----
  @var{initial} does, try the command @kbd{C-x C-v}.  @strong{Note:} we
  recommend using @var{default} rather than @var{initial} in most cases.
  
! Here is an example:
  
  @example
  @group
  (read-file-name "The file is ")
  
! ;; @r{After evaluation of the preceding expression,}
  ;;   @r{the following appears in the minibuffer:}
  @end group
  
***************
*** 1275,1287 ****
  @group
  (y-or-n-p "Do you need a lift? ")
  
! ;; @r{After evaluation of the preceding expression,} 
  ;;   @r{the following prompt appears in the echo area:}
  @end group
  
  @group
  ---------- Echo area ----------
! Do you need a lift? (y or n) 
  ---------- Echo area ----------
  @end group
  
--- 1275,1287 ----
  @group
  (y-or-n-p "Do you need a lift? ")
  
! ;; @r{After evaluation of the preceding expression,}
  ;;   @r{the following prompt appears in the echo area:}
  @end group
  
  @group
  ---------- Echo area ----------
! Do you need a lift? (y or n)
  ---------- Echo area ----------
  @end group
  
***************
*** 1289,1295 ****
  
  @group
  ---------- Echo area ----------
! Please answer y or n.  Do you need a lift? (y or n) 
  ---------- Echo area ----------
  @end group
  
--- 1289,1295 ----
  
  @group
  ---------- Echo area ----------
! Please answer y or n.  Do you need a lift? (y or n)
  ---------- Echo area ----------
  @end group
  
***************
*** 1335,1348 ****
  @group
  (yes-or-no-p "Do you really want to remove everything? ")
  
! ;; @r{After evaluation of the preceding expression,} 
! ;;   @r{the following prompt appears,} 
  ;;   @r{with an empty minibuffer:}
  @end group
  
  @group
  ---------- Buffer: minibuffer ----------
! Do you really want to remove everything? (yes or no) 
  ---------- Buffer: minibuffer ----------
  @end group
  @end smallexample
--- 1335,1348 ----
  @group
  (yes-or-no-p "Do you really want to remove everything? ")
  
! ;; @r{After evaluation of the preceding expression,}
! ;;   @r{the following prompt appears,}
  ;;   @r{with an empty minibuffer:}
  @end group
  
  @group
  ---------- Buffer: minibuffer ----------
! Do you really want to remove everything? (yes or no)
  ---------- Buffer: minibuffer ----------
  @end group
  @end smallexample




reply via email to

[Prev in Thread] Current Thread [Next in Thread]