unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#59879: 30.0.50; [PATCH] Silencing the compiler about obsolete `org-show-entry'
@ 2022-12-07 10:29 Arash Esbati
  0 siblings, 0 replies; only message in thread
From: Arash Esbati @ 2022-12-07 10:29 UTC (permalink / raw)
  To: 59879

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





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-12-07 10:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-07 10:29 bug#59879: 30.0.50; [PATCH] Silencing the compiler about obsolete `org-show-entry' Arash Esbati

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).