Can someone apply this one line patch to make ABBREV-HACKING-NEXT-LINE
properly track the current column? This is needed because LINE-MOVE
checks LAST-COMMAND as follows:
(if (not (or (eq last-command 'next-line)
(eq last-command 'previous-line)))
The patch is against 21.4.14.
thanks,
Greg
--- mail-abbrevs.el.bak Wed Dec 3 20:43:47 2003
+++ mail-abbrevs.el Wed Dec 3 20:44:12 2003
@@ -607,7 +607,8 @@
(if (and (looking-at "[ \t]*\n")
(= (char-syntax (preceding-char)) ?w))
(expand-abbrev))
- (next-line (or arg 1)))
+ (next-line (or arg 1))
+ (setq this-command 'next-line))
(defun abbrev-hacking-end-of-buffer (&optional arg)
"Just like `end-of-buffer' (\\<global-map>\\[end-of-buffer]) but expands
\