diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-05-18 14:06:19 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-05-18 14:06:19 +0100 |
commit | 6a8748d142e1383cf8d6b5bf6ed361491ab82e3b (patch) | |
tree | 82cf7cfc4230a7413a65ed7c57c43da0da275291 /.emacs.d/lisp/init-navigation.el | |
parent | 8ac94b8fa8ffcac7cf35006d3ed843a9c7db28a9 (diff) | |
download | dotfiles-6a8748d142e1383cf8d6b5bf6ed361491ab82e3b.tar.gz |
Fix eldoc docstring length warnings
Diffstat (limited to '.emacs.d/lisp/init-navigation.el')
-rw-r--r-- | .emacs.d/lisp/init-navigation.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-navigation.el b/.emacs.d/lisp/init-navigation.el index d0df0f1..d3024aa 100644 --- a/.emacs.d/lisp/init-navigation.el +++ b/.emacs.d/lisp/init-navigation.el @@ -16,7 +16,8 @@ If a numeric prefix argument N is given, move forward N instances of char." (defun goto-char-forward-repeat-last (arg) "Move forward in line to char last used in a goto-char command. If a C-u prefix argument is given, it is not restricted to the current line. -If a numeric prefix argument N is given, move forward N instances of the last used char." +If a numeric prefix argument N is given, move forward N instances of the last +used char." (interactive "P") (goto-char--move-forward arg)) @@ -31,7 +32,8 @@ If a numeric prefix argument N is given, move back N instances of char." (defun goto-char-backward-repeat-last (arg) "Move backward in line to char last qused in a goto-char command. If a C-u prefix argument is given, it is not restricted to the current line. -If a numeric prefix argument N is given, move back N instances of the last used char." +If a numeric prefix argument N is given, move back N instances of the last used +char." (interactive "P") (goto-char--move-backward arg)) |