help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: need obsolete arg in (read-from-minibuffer ...)


From: ken
Subject: Re: need obsolete arg in (read-from-minibuffer ...)
Date: Fri, 18 Mar 2011 18:12:09 -0400
User-agent: Thunderbird 2.0.0.24 (X11/20101213)

On 03/18/2011 04:37 PM Drew Adams wrote:
>> the docs say that 2nd arg is obsolete.  However,
>> I've tried a lot of permutations of the args listed and I 
>> can't get this function to work without using that obsolete 2nd arg.
>> (defun mygetstr (def-val)
>>     (read-from-minibuffer "Enter/Edit string: "
>>                           def-val nil nil nil def-val t))
> 
> What do you mean by "work"?  And what do you mean "without" the obsolete arg?

Sorry, I should have been clearer.  If I change the 2nd arg from
"def-val" to "nil", then def-val isn't displayed in the minibuffer for
editing by the user.  However, the docs say that this arg is obsolete.
I take this to mean that it should be left as "nil".


> That argument must be present if you include any arguments to the right of it.

That's correct.


> 
> What is considered (by some) to be "obsolete" is to use a non-nil value for 
> the
> argument.  That's all.  You cannot simply remove the arg if you include args
> such as the DEFAULT-VALUE and INHERIT-INPUT-METHOD.  A nil argument can be
> omitted if there are no non-nil args coming after it (i.e., to the right).

I agree.





reply via email to

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