Function: diary-unhide-everything
diary-unhide-everything is a byte-compiled function defined in
diary-lib.el.gz.
Signature
(diary-unhide-everything)
Documentation
Show all invisible text in the diary.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/diary-lib.el.gz
(defun diary-unhide-everything ()
"Show all invisible text in the diary."
(kill-local-variable 'diary-selective-display)
(save-restriction ; bug#5477
(widen)
(remove-overlays (point-min) (point-max) 'invisible 'diary))
(kill-local-variable 'mode-line-format))