aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-18 20:36:11 +0000
committerJim Blandy1993-05-18 20:36:11 +0000
commitee5fb85ff1d233f81f30bec007635c0da4f326b0 (patch)
tree7f7456c2e11195c3a8b029729beb2f80dae1f052
parent51facdef2e2bd165bf6b0bd2e1874db3448a3026 (diff)
downloademacs-ee5fb85ff1d233f81f30bec007635c0da4f326b0.tar.gz
emacs-ee5fb85ff1d233f81f30bec007635c0da4f326b0.zip
* subr.el (overlay-start, overlay-end, overlay-buffer): Removed.
-rw-r--r--lisp/subr.el15
1 files changed, 0 insertions, 15 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 74c8968fc1c..d5260e67d84 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -336,21 +336,6 @@ nas returned by the `event-start' and `event-end' functions."
336 (nth 3 position)) 336 (nth 3 position))
337 337
338 338
339;;;; Overlay dissection functions.
340
341(defsubst overlay-start (overlay)
342 "Return the position at which OVERLAY starts."
343 (marker-position (car (car overlay))))
344
345(defsubst overlay-end (overlay)
346 "Return the position at which OVERLAY ends."
347 (marker-position (cdr (car overlay))))
348
349(defsubst overlay-buffer (overlay)
350 "Return the buffer OVERLAY belongs to."
351 (marker-buffer (overlay-start overlay)))
352
353
354;;;; Obsolescent names for functions. 339;;;; Obsolescent names for functions.
355 340
356(defalias 'make-syntax-table 'copy-syntax-table) 341(defalias 'make-syntax-table 'copy-syntax-table)