diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-30 11:41:47 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-30 11:41:47 +0100 |
commit | ff3838ecc3f5c913675ca935e047dc6952d79f50 (patch) | |
tree | b139d51931ab130c269a9fcd5b1e3d387e1401b7 /lisp/emacs-lisp | |
parent | 122ace858ba94e11d1b2713d0816b3a7d7e2a323 (diff) | |
download | emacs-ff3838ecc3f5c913675ca935e047dc6952d79f50.tar.gz emacs-ff3838ecc3f5c913675ca935e047dc6952d79f50.tar.bz2 emacs-ff3838ecc3f5c913675ca935e047dc6952d79f50.zip |
; Remove spurious FIXMEs in my last commit
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 2 |
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: "Move cursor to previous function." (interactive "p") (shortdoc--goto-section arg 'shortdoc-function t) - ;; FIXME: Why is this needed? (backward-char 1)) (defun shortdoc-next-section (&optional arg) @@ -1248,7 +1247,6 @@ Example: "Move cursor to previous section." (interactive "p") (shortdoc--goto-section arg 'shortdoc-section t) - ;; FIXME: Why is this needed? (forward-line -2)) (provide 'shortdoc) |