From: Stefan Monnier Date: Thu, 23 Nov 2000 00:41:42 +0000 (+0000) Subject: (outline-discard-overlays): Missing paren. X-Git-Tag: emacs-pretest-21.0.92~137 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=75056d401573f8c952ccaeec3d9a7aced8ba7884;p=emacs.git (outline-discard-overlays): Missing paren. --- diff --git a/lisp/textmodes/outline.el b/lisp/textmodes/outline.el index ed6f09864ac..e34ab7e154d 100644 --- a/lisp/textmodes/outline.el +++ b/lisp/textmodes/outline.el @@ -426,7 +426,7 @@ If FLAG is nil then text is shown, while if FLAG is t the text is hidden." (move-overlay o (overlay-start o) beg)) (if (> (overlay-end o) end) (move-overlay o end (overlay-end o)) - (delete-overlay o)))))))) + (delete-overlay o))))))) ;; Make a copy of overlay O, with the same beginning, end and properties. (defun outline-copy-overlay (o)