changeset 765:a543dd3d410f

[xemacs-hg @ 2002-03-05 13:21:21 by stephent] <m3sn7fcm7w.fsf@mail.contactor.se> <q7u1yic5cj5.fsf@hw1020.wdf.sap-ag.de>
author stephent
date Tue, 05 Mar 2002 13:21:22 +0000
parents 3c5d0bca9200
children 7b8fc81f9587
files lisp/ChangeLog lisp/help-nomule.el lisp/minibuf.el
diffstat 3 files changed, 25 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Mar 05 13:00:38 2002 +0000
+++ b/lisp/ChangeLog	Tue Mar 05 13:21:22 2002 +0000
@@ -1,3 +1,12 @@
+2002-03-05  Mats Lidell  <matsl@contactor.se>
+ 
+ 	* help-nomule.el (tutorial-supported-languages): Added Swedish
+ 	tutorial. Sorted languages.
+
+2001-12-03  Christoph Wedler  <Christoph.Wedler@sap.com>
+
+	* minibuf.el (completing-read): Update docstring.
+
 2002-02-28  Stephen J. Turnbull  <stephen@xemacs.org>
 
 	* toolbar.el (toolbar-visible-p):
--- a/lisp/help-nomule.el	Tue Mar 05 13:00:38 2002 +0000
+++ b/lisp/help-nomule.el	Tue Mar 05 13:21:22 2002 +0000
@@ -31,12 +31,15 @@
 ;;; Code:
 
 (defconst tutorial-supported-languages
-  '(("French" fr iso-8859-1)
+  '(
+    ("Croatian" hr iso-8859-2)
+    ("French" fr iso-8859-1)
     ("German" de iso-8859-1)
     ("Norwegian" no iso-8859-1)
-    ("Croatian" hr iso-8859-2)
     ("Polish" pl iso-8859-2)
-    ("Romanian" ro iso-8859-2))
+    ("Romanian" ro iso-8859-2)
+    ("Swedish" se iso-8859-1)
+    )
   "Alist of supported languages in TUTORIAL files.
 Add languages here, as more are translated.")
 
--- a/lisp/minibuf.el	Tue Mar 05 13:00:38 2002 +0000
+++ b/lisp/minibuf.el	Tue Mar 05 13:21:22 2002 +0000
@@ -764,14 +764,18 @@
 Args: PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-CONTENTS, HISTORY.
 PROMPT is a string to prompt with; normally it ends in a colon and a space.
 TABLE is an alist whose elements' cars are strings, or an obarray.
+TABLE can also be a function to do the completion itself.
 PREDICATE limits completion to a subset of TABLE.
-See `try-completion' for more details on completion, TABLE, and PREDICATE.
+See `try-completion' and `all-completions' for more details
+  on completion, TABLE, and PREDICATE.
+
 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
- the input is (or completes to) an element of TABLE or is null.
- If it is also not t, Return does not exit if it does non-null completion.
+  the input is (or completes to) an element of TABLE or is null.
+  If it is also not t, Return does not exit if it does non-null completion.
 If INITIAL-CONTENTS is non-nil, insert it in the minibuffer initially.
   If it is (STRING . POSITION), the initial input
   is STRING, but point is placed POSITION characters into the string.
+
 HISTORY, if non-nil, specifies a history list
   and optionally the initial position in the list.
   It can be a symbol, which is the history list variable to use,
@@ -781,7 +785,9 @@
   which INITIAL-CONTENTS corresponds to).
   If HISTORY is `t', no history will be recorded.
   Positions are counted starting from 1 at the beginning of the list.
-DEFAULT, if non-nil, is the default value.
+DEFAULT, if non-nil, will be returned when the user enters an empty
+  string.
+
 Completion ignores case if the ambient value of
   `completion-ignore-case' is non-nil."
   (let ((minibuffer-completion-table table)