# HG changeset patch # User Stefan Monnier # Date 1188350088 0 # Node ID ed8435ec5652193b8a039823f079cd3901812a69 # Parent 9547b9f350420638e78e00acf5c2c710c7797c57 (invisible-p): Remove: implemented in C now. (line-move-invisible-p): Remove obsolete alias. diff -r 9547b9f35042 -r ed8435ec5652 lisp/ChangeLog --- a/lisp/ChangeLog Tue Aug 28 22:42:44 2007 +0000 +++ b/lisp/ChangeLog Wed Aug 29 01:14:48 2007 +0000 @@ -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 -r 9547b9f35042 -r ed8435ec5652 lisp/simple.el --- a/lisp/simple.el Tue Aug 28 22:42:44 2007 +0000 +++ b/lisp/simple.el Wed Aug 29 01:14:48 2007 +0000 @@ -3639,16 +3639,6 @@ :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)