about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-navigation.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-05-18 14:06:19 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-05-18 14:06:19 +0100
commit6a8748d142e1383cf8d6b5bf6ed361491ab82e3b (patch)
tree82cf7cfc4230a7413a65ed7c57c43da0da275291 /.emacs.d/lisp/init-navigation.el
parent8ac94b8fa8ffcac7cf35006d3ed843a9c7db28a9 (diff)
downloaddotfiles-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.el6
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))