On 14 Sep, 16:24, Andreas Röhler 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