aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/shortdoc.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index ebc7e3f61b1..dd9cbd5d55a 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -1236,7 +1236,6 @@ Example:
1236 "Move cursor to previous function." 1236 "Move cursor to previous function."
1237 (interactive "p") 1237 (interactive "p")
1238 (shortdoc--goto-section arg 'shortdoc-function t) 1238 (shortdoc--goto-section arg 'shortdoc-function t)
1239 ;; FIXME: Why is this needed?
1240 (backward-char 1)) 1239 (backward-char 1))
1241 1240
1242(defun shortdoc-next-section (&optional arg) 1241(defun shortdoc-next-section (&optional arg)
@@ -1248,7 +1247,6 @@ Example:
1248 "Move cursor to previous section." 1247 "Move cursor to previous section."
1249 (interactive "p") 1248 (interactive "p")
1250 (shortdoc--goto-section arg 'shortdoc-section t) 1249 (shortdoc--goto-section arg 'shortdoc-section t)
1251 ;; FIXME: Why is this needed?
1252 (forward-line -2)) 1250 (forward-line -2))
1253 1251
1254(provide 'shortdoc) 1252(provide 'shortdoc)