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

Re: Flyspell mode and BBDB autocompletion



>> 	   (let* ((here (point))
              ...
>> 	       (goto-char here)

The standard idiom for that is "save-excursion".

> 			(goto-char (line-beginning-position))

"beginning-of-line".

> (re-search-forward "^.\\(o\\|c\\|cc\\): " eol t))))

"looking-at".

-- Juliust