GNU bug report logs -
#59879
30.0.50; [PATCH] Silencing the compiler about obsolete `org-show-entry'
Previous Next
Reported by: Arash Esbati <arash <at> gnu.org>
Date: Wed, 7 Dec 2022 10:30:02 UTC
Severity: normal
Tags: fixed, patch
Found in version 30.0.50
Fixed in version 29.1
Done: Arash Esbati <arash <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi all,
compiling from master (82849f9a20) shows the following warning:
In gnus-icalendar--show-org-event:
gnus/gnus-icalendar.el:606:8: Warning: `org-show-entry' is an obsolete
function (as of 9.6); use `org-fold-show-entry' instead.
The following change fixes the issue:
--8<---------------cut here---------------start------------->8---
diff --git a/lisp/gnus/gnus-icalendar.el b/lisp/gnus/gnus-icalendar.el
index 1bffdf3513..f3665c3f1a 100644
--- a/lisp/gnus/gnus-icalendar.el
+++ b/lisp/gnus/gnus-icalendar.el
@@ -603,7 +603,7 @@ gnus-icalendar--show-org-event
(when file
(switch-to-buffer (find-file file))
(goto-char (org-find-entry-with-id (gnus-icalendar-event:uid event)))
- (org-show-entry))))
+ (org-fold-show-entry))))
(defun gnus-icalendar--update-org-event (event reply-status &optional org-file)
--8<---------------cut here---------------end--------------->8---
The change applies also to emacs-29 branch in case it should be fixed
there.
Best, Arash
This bug report was last modified 2 years and 162 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.