diff options
| author | David Aspinall | 2009-09-06 12:58:28 +0000 |
|---|---|---|
| committer | David Aspinall | 2009-09-06 12:58:28 +0000 |
| commit | 51856975251c32460037f0f762b3bf357fc92ee5 (patch) | |
| tree | 9453be3a51eed4cae76ee4a565379c9a8911fb08 | |
| parent | d2ff587e3dfdbb01665bc9853783d3f3ac536440 (diff) | |
Fix pareno
| -rw-r--r-- | lib/span.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/span.el b/lib/span.el index 3e88f7ca..4c83baa0 100644 --- a/lib/span.el +++ b/lib/span.el @@ -72,7 +72,8 @@ Optional argument FUN is used in place of `span-give-warning'." (if (null prop) (overlays-at pt) (dolist (ol (overlays-at pt)) - (if (overlay-get ol prop) (push ol ols))) + (if (overlay-get ol prop) + (push ol ols))) ols))) (defsubst spans-at-region-prop (start end prop) @@ -82,8 +83,8 @@ Optional argument FUN is used in place of `span-give-warning'." (overlays-in start end) (dolist (ol (overlays-in start end)) (if (overlay-get ol prop) - (push ol ols)) - ols)))) + (push ol ols))) + ols))) (defsubst span-at (pt prop) "Return some SPAN at point PT with property PROP." |
