emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] Use of deprecated org-log-note-marker variable in outshine


From: Kaushal Modi
Subject: [O] Use of deprecated org-log-note-marker variable in outshine
Date: Wed, 6 Jan 2016 18:09:12 -0500

Hi Thorsten,

Recently the global variable org-log-note-marker was removed from org.el.

But it is used in outshine.el as follows:

(defadvice org-store-log-note (around org-store-log-note-around activate)
  "Outcomment inserted log-note in Outshine buffers."
  (let ((outshine-log-note-beg-marker
;; stay before inserted text
(copy-marker org-log-note-marker nil))
(outshine-log-note-end-marker
;; stay after inserted text
(copy-marker org-log-note-marker t)))
    ad-do-it
    (unless (derived-mode-p 'org-mode 'org-agenda-mode)
      (comment-region outshine-log-note-beg-marker
     outshine-log-note-end-marker))
    (move-marker outshine-log-note-beg-marker nil)
    (move-marker outshine-log-note-end-marker nil)))

So right now, I am getting this warning at emacs startup:

~/.emacs.d/elpa_25_0/outshine-20151203.802/outshine.elc:Warning: reference to
    free variable ‘org-log-note-marker’


@ Thorsten, Nicolas: What would be the best way to fix that?

My org version:
Org-mode version 8.3.2 (release_8.3.2-469-ga902c8 @ /home/kmodi/usr_local/apps/6/emacs/emacs-25/share/emacs/site-lisp/org/)


--
Kaushal Modi

reply via email to

[Prev in Thread] Current Thread [Next in Thread]