bug-bash
[Top][All Lists]
Advanced

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

Re: eval constructs in prog. completion funcs dont't work


From: Paul Jarc
Subject: Re: eval constructs in prog. completion funcs dont't work
Date: 19 Apr 2001 11:18:13 -0400
User-agent: Gnus/5.090001 (Oort Gnus v0.01) Emacs/20.7

schwarzb@imsdd.fhg.de (Markus Schwarzenberg) writes:
>           test_func () { eval COMPREPLY=( A B ) ; }

Parentheses are metacharacters.  What happens if you quote the eval
string?
test_func () { eval 'COMPREPLY=( A B )' ; }


paul



reply via email to

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