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

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

Re: how to get list of vectors with value from file content...


From: TheFlyingDutchman
Subject: Re: how to get list of vectors with value from file content...
Date: Wed, 08 Dec 2010 15:27:04 -0000
User-agent: G2/1.0

> seems my second problem is solved if i have list of list instead of
> list of vectors. With list of list, i can simply write
>
> (setq findReplacePairsList
>       (list
>        (list findreplace_01_A findreplace_01_B)
>        (list findreplace_02_A findreplace_02_B)
>        (list findreplace_03_A findreplace_03_B)
>        ))

Forgot to add that the vector function works here as well:

(setq findReplacePairsList
       (list
        (vector findreplace_01_A findreplace_01_B)
        (vector findreplace_02_A findreplace_02_B)
        (vector findreplace_03_A findreplace_03_B)
        ))



reply via email to

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