From 13f0affc77ff56a4e4ec962ba4c92ccbf39b33a0 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 29 Aug 2007 01:14:48 +0000 Subject: (invisible-p): Remove: implemented in C now. (line-move-invisible-p): Remove obsolete alias. --- lisp/ChangeLog | 11 +++++++---- lisp/simple.el | 10 ---------- 2 files changed, 7 insertions(+), 14 deletions(-) (limited to 'lisp') diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f93cabf0cc3..dd2f8560906 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-08-29 Stefan Monnier + + * simple.el (invisible-p): Remove: implemented in C now. + (line-move-invisible-p): Remove obsolete alias. + 2007-08-28 Juri Linkov * image-mode.el (image-type): New variable. @@ -23,12 +28,10 @@ (tramp-do-copy-or-rename-file): New parameter PRESERVE-UID-GID. Improve fast track. (tramp-do-copy-or-rename-file-directly): Sync parameter list with - the other tramp-do-copy-or-rename-file-* functions. Major - rewrite. + the other tramp-do-copy-or-rename-file-* functions. Major rewrite. (tramp-handle-file-local-copy, tramp-handle-insert-file-contents) (tramp-handle-write-region): Improve fast track. - (tramp-handle-file-remote-p): IDENTIFICATION can also be - 'localname. + (tramp-handle-file-remote-p): IDENTIFICATION can also be `localname'. (tramp-maybe-open-connection): Let `process-adaptive-read-buffering' be nil. diff --git a/lisp/simple.el b/lisp/simple.el index 3caade5da85..5989d9cc61f 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3639,16 +3639,6 @@ Outline mode sets this." :type 'boolean :group 'editing-basics) -(defun invisible-p (pos) - "Return non-nil if the character after POS is currently invisible." - (let ((prop - (get-char-property pos 'invisible))) - (if (eq buffer-invisibility-spec t) - prop - (or (memq prop buffer-invisibility-spec) - (assq prop buffer-invisibility-spec))))) -(define-obsolete-function-alias 'line-move-invisible-p 'invisible-p) - ;; Returns non-nil if partial move was done. (defun line-move-partial (arg noerror to-end) (if (< arg 0) -- cgit v1.2.1