]> git.cworth.org Git - notmuch/commitdiff
emacs: remove unused `point-invisible-p' function
authorDmitry Kurochkin <dmitry.kurochkin@gmail.com>
Sun, 6 Nov 2011 09:04:01 +0000 (13:04 +0400)
committerDavid Bremner <bremner@debian.org>
Tue, 8 Nov 2011 00:38:37 +0000 (20:38 -0400)
`point-invisible-p' does not work correctly when `invisible'
property is a list.  There are standard `invisible-p' and related
functions that should be used instead.

emacs/notmuch-lib.el

index f93c957d5d72d0cc26704c673341471fc58d20ac..0f856bf0035e8bceb02cd2bb83a0be800c666dec 100644 (file)
@@ -105,21 +105,6 @@ the user hasn't set this variable with the old or new value."
 
 ;;
 
-;; XXX: This should be a generic function in emacs somewhere, not
-;; here.
-(defun point-invisible-p ()
-  "Return whether the character at point is invisible.
-
-Here visibility is determined by `buffer-invisibility-spec' and
-the invisible property of any overlays for point. It doesn't have
-anything to do with whether point is currently being displayed
-within the current window."
-  (let ((prop (get-char-property (point) 'invisible)))
-    (if (eq buffer-invisibility-spec t)
-       prop
-      (or (memq prop buffer-invisibility-spec)
-         (assq prop buffer-invisibility-spec)))))
-
 (defun notmuch-remove-if-not (predicate list)
   "Return a copy of LIST with all items not satisfying PREDICATE removed."
   (let (out)