branch: elpa/spell-fu commit e2eda668f5af063ecc3d97321eda6a50951c87a1 Author: Campbell Barton <ideasma...@gmail.com> Commit: Campbell Barton <ideasma...@gmail.com>
Cleanup: rename fun -> fn for function abbreviation --- spell-fu.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spell-fu.el b/spell-fu.el index 4ceb32d0c5..4fa6989b67 100644 --- a/spell-fu.el +++ b/spell-fu.el @@ -270,9 +270,9 @@ Notes: (defun spell-fu--dictionary-ensure-update (dict) "Call DICT update function if it exists." (declare (important-return-value nil)) - (let ((update-fun (get dict 'update))) - (when update-fun - (funcall update-fun) + (let ((update-fn (get dict 'update))) + (when update-fn + (funcall update-fn) (spell-fu--debug-message "updating [%s], found [%d] word(s)" (get dict 'description) (hash-table-size (symbol-value dict))))))