Ch f flyspell-auto-correct-previous-wordは、数値引数が「位置」と呼ばれることを教えてくれます。それはあなたが探しているもののようには見えません。位置は、バッファー内の位置を参照している可能性があります。フライスペルのソースコードを見ると、パラメーターが意図的な方法で使用されていないことがわかります(オーバーレイが何であるかはわかりません...)
;*---------------------------------------------------------------------*/
;* flyspell-auto-correct-previous-word ... */
;*---------------------------------------------------------------------*/
(defun flyspell-auto-correct-previous-word (position)
"*Auto correct the first mispelled word that occurs before point."
(interactive "d")
(add-hook 'pre-command-hook
(function flyspell-auto-correct-previous-hook) t t)
(save-excursion
(unless flyspell-auto-correct-previous-pos
;; only reset if a new overlay exists
(setq flyspell-auto-correct-previous-pos nil)
(let ((overlay-list (overlays-in (point-min) position))
(new-overlay 'dummy-value))
[SNIP]
また、(対話型の「d」)は、対話型の呼び出しの場合に、ポイントの現在の位置が位置に割り当てられていることを示します。matthias