summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-08-29 01:14:48 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-08-29 01:14:48 +0000
commitcb5b9015b372175f1fc90cb7ba3f43298c621509 (patch)
tree7c02b88cdb8f445c745a28fe7439c31a6eb5d441 /lisp
parent21d50fdc988266eee3d9b2d91c5ae0a47aedabb4 (diff)
downloademacs-cb5b9015b372175f1fc90cb7ba3f43298c621509.tar.gz
(invisible-p): Remove: implemented in C now.
(line-move-invisible-p): Remove obsolete alias.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/simple.el10
2 files changed, 7 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b8b33341a0e..06ceba6a157 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -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.
@@ -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)