aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/span-extent.el
diff options
context:
space:
mode:
Diffstat (limited to 'generic/span-extent.el')
-rw-r--r--generic/span-extent.el12
1 files changed, 0 insertions, 12 deletions
diff --git a/generic/span-extent.el b/generic/span-extent.el
index 855824dd..eda3410d 100644
--- a/generic/span-extent.el
+++ b/generic/span-extent.el
@@ -25,14 +25,6 @@
"Set the endpoints of SPAN to START, END."
(set-extent-endpoints span start end))
-(defsubst set-span-start (span value)
- "Set the start point of SPAN to VALUE."
- (set-extent-endpoints span value (extent-end-position span)))
-
-(defsubst set-span-end (span value)
- "Set the end point of SPAN to VALUE."
- (set-extent-endpoints span (extent-start-position span) value))
-
(defsubst set-span-property (span name value)
"Set SPAN's property NAME to VALUE."
(set-extent-property span name value))
@@ -70,10 +62,6 @@
"Apply function FN to all spans between START and END with property PROP set"
(mapcar-extents fn nil (current-buffer) start end nil prop val))
-(defsubst delete-spans (start end prop)
- "Delete all spans between START and END with property PROP set."
- (mapcar-spans 'delete-span start end prop))
-
(defsubst span-at (pt prop)
"Return the smallest SPAN at point PT with property PROP."
(extent-at pt nil prop))