Skip to content

Commit

Permalink
(invisible-p): Remove: implemented in C now.
Browse files Browse the repository at this point in the history
(line-move-invisible-p): Remove obsolete alias.
  • Loading branch information
monnier committed Aug 29, 2007
1 parent e38c8bd commit 9d7e8e3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
11 changes: 7 additions & 4 deletions lisp/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>

* simple.el (invisible-p): Remove: implemented in C now.
(line-move-invisible-p): Remove obsolete alias.

2007-08-28 Juri Linkov <juri@jurta.org>

* image-mode.el (image-type): New variable.
Expand All @@ -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.

Expand Down
10 changes: 0 additions & 10 deletions lisp/simple.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9d7e8e3

Please sign in to comment.