[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: dabbrev problem...
From: |
cons |
Subject: |
Re: dabbrev problem... |
Date: |
Fri, 14 Sep 2007 13:12:40 -0700 |
User-agent: |
G2/1.0 |
On 14 Sep, 16:24, Andreas Röhler <andreas.roeh...@online.de> wrote:
> Am Freitag, 14. September 2007 14:39 schrieb cons:
>
> > (defun complete-further (arg)
> > "Insert space and then call dabbrev-expand."
> > (interactive "*P")
> > (insert " ")
> > (dabbrev-expand arg))
>
> Just take a lesser "p" and it will do.
>
> (interactive "*p")
>
> Andreas Röhler
Thanks a million! Now it works perfectly! Must learn the meaning of
'interactive' apparently... :)
/Stefan