[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: string func to use in .emacs
|
From: |
Jesper Harder |
|
Subject: |
Re: string func to use in .emacs |
|
Date: |
Mon, 26 Jan 2004 04:57:37 +0100 |
|
User-agent: |
Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux) |
Peter Wu <address@hidden> writes:
> On Mon, 26 Jan 2004 01:44:45 +0100, Jesper Harder wrote:
>
>> A common idiom when you have a function that works in a buffer and
>> want to apply it to a string is to use a temporary buffer:
>
>> (defun string-trim-right (str)
>> (with-temp-buffer
>> (insert str)
>> (delete-trailing-whitespace)
>> (buffer-string)))
>
> I tried to use the func and got an error: My code:
>
> (string-trim-right("Emacs "))
That should be:
(string-trim-right "Emacs ")
- string func to use in .emacs, Peter Wu, 2004/01/25
- Re: string func to use in .emacs, Eli Zaretskii, 2004/01/25
- Message not available
- Re: string func to use in .emacs, Peter Wu, 2004/01/25
- Re: string func to use in .emacs, Mario Domgörgen, 2004/01/25
- Re: string func to use in .emacs, Peter Wu, 2004/01/25
- Re: string func to use in .emacs, Jesper Harder, 2004/01/25
- Re: string func to use in .emacs, Peter Wu, 2004/01/25
- Re: string func to use in .emacs,
Jesper Harder <=
- Re: string func to use in .emacs, Peter Wu, 2004/01/26
- Re: string func to use in .emacs, Eli Zaretskii, 2004/01/26
- Re: string func to use in .emacs, Eli Zaretskii, 2004/01/25