fix warnings

This commit is contained in:
Jean-Philippe Bernardy 2016-09-11 14:41:03 +02:00
parent a64c6a3048
commit d928579b51
2 changed files with 2 additions and 3 deletions

View file

@ -12,6 +12,7 @@
(require 'er-basic-expansions)
(require 'find-func)
(require 'boon-utils)
(require 'subr-x)
;;; Jumping to definitions (at point):

View file

@ -46,9 +46,7 @@ Can be negative."
(defun boon-looking-at-comment (how-many)
"Is the current point looking at HOW-MANY comments? (negative for backwards)?"
(declare (obsolete "useless" "20160901"))
(save-excursion
(forward-comment how-many)))
(save-excursion (forward-comment how-many)))
(defun boon-in-string-p ()
"Determine if the point is inside a string."