GNU bug report logs - #44687
26.3; Link broken in inline comment

Previous Next

Package: org-mode;

Reported by: YH Tan <astyh83 <at> gmail.com>

Date: Mon, 16 Nov 2020 16:11:02 UTC

Severity: normal

Tags: wontfix

Done: Kyle Meyer <kyle <at> kyleam.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 44687 in the body.
You can then email your comments to 44687 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#44687; Package emacs. (Mon, 16 Nov 2020 16:11:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to YH Tan <astyh83 <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Mon, 16 Nov 2020 16:11:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: YH Tan <astyh83 <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 26.3; Link broken in inline comment
Date: Tue, 17 Nov 2020 00:10:34 +0800
In org-mode,

```
[[link]]@@comment:[[link]]@@
# [[link]]

* link
```

I get the message "No Link Found" when clicking on the [[link]] within
the inline @@comment:[[link]]@@.

The link works fine with emacs -Q, but breaks after evaluating some
init.el code.

Problem is, I cannot pinpoint to the exact code that broke the link.

Evaluating the code from Castlemacs below, for example, could bring about the error.

```
;; ====
;; INIT

;; Package system and sources.
(require 'package)
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
                 (not (gnutls-available-p))))
    (proto (if no-ssl "http" "https")))
    ;; Comment/uncomment these two lines to enable/disable MELPA and MELPA Stable as desired
    ;; (add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t)
    (add-to-list 'package-archives (cons "melpa-stable" (concat proto "://stable.melpa.org/packages/")) t)
    (when (< emacs-major-version 24)
    ;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/")))))

(package-initialize)


;; We will use 'use-package' to install and configure packages.
(unless (package-installed-p 'use-package)
  (package-refresh-contents)
  (package-install 'use-package))
(eval-when-compile (require 'use-package))


;; No need to out 'ensure' everywhere, since we don't use anything else to install packages.
(setq use-package-always-ensure t)


;; Pass system shell environment to Emacs. This is important primarily for shell inside Emacs, but also things like Org mode export to Tex PDF don't work, since it relies on running external command pdflatex, which is loaded from PATH.
(use-package exec-path-from-shell
  :ensure t)
(when (memq window-system '(mac ns))
  (exec-path-from-shell-initialize))


;; Store custom-file separately, don't freak out when it's not found
(setq custom-file "~/.emacs.d/custom.el")
(load custom-file 'noerror)


;; Set path for private config. private.el is not part of Castlemacs and you can use it for your personal
;; additions. Do not change init.el yourself, it will make updates harder.
(add-hook
'after-init-hook
(lambda ()
   (let ((private-file (concat user-emacs-directory "private.el")))
     (when (file-exists-p private-file)
       (load-file private-file)))))
```

-----




In GNU Emacs 26.3 (build 1, x86_64-apple-darwin18.2.0, NS appkit-1671.20 Version 10.14.3 (Build 18D109))
of 2019-09-02 built on builder10-14.porkrind.org
Windowing system distributor 'Apple', version 10.3.1671
Recent messages:
Created x-devonthink-item link.
Created message link.
Loading /Users/satibodhi/.emacs.d/lisp/org-mac-link.el (source)...done
Created pdf link.
Loading /Users/satibodhi/quicklisp/slime-helper.el (source)...done
[yas] Prepared just-in-time loading of snippets successfully.
Loading /Users/satibodhi/.emacs.d/private.el (source)...done
Turning on magit-auto-revert-mode...done
Starting new Ispell process aspell with default dictionary...
For information about GNU Emacs and the GNU system, type C-h C-a.

Configured using:
'configure --with-ns '--enable-locallisppath=/Library/Application
Support/Emacs/${version}/site-lisp:/Library/Application
Support/Emacs/site-lisp' --with-modules'

Configured features:
NOTIFY ACL GNUTLS LIBXML2 ZLIB TOOLKIT_SCROLL_BARS NS MODULES THREADS

Important settings:
  value of $LANG: en_TW.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Org

Minor modes in effect:
  org-zotxt-mode: t
  org-indent-mode: t
  yas-minor-mode: t
  pyvenv-mode: t
  org-bullets-mode: t
  elmacro-mode: t
  csv-field-index-mode: t
  engine-mode: t
  desktop-save-mode: t
  flyspell-mode: t
  global-company-mode: t
  global-git-gutter-mode: t
  global-magit-file-mode: t
  diff-auto-refine-mode: t
  magit-auto-revert-mode: t
  global-git-commit-mode: t
  async-bytecomp-package-mode: t
  shell-dirtrack-mode: t
  counsel-projectile-mode: t
  ivy-rich-mode: t
  ivy-mode: t
  projectile-mode: t
  winner-mode: t
  which-key-mode: t
  global-vi-tilde-fringe-mode: t
  vi-tilde-fringe-mode: t
  rich-minority-mode: t
  show-smartparens-global-mode: t
  show-smartparens-mode: t
  smartparens-global-mode: t
  smartparens-mode: t
  global-hl-line-mode: t
  simpleclip-mode: t
  delete-selection-mode: t
  global-auto-revert-mode: t
  show-paren-mode: t
  override-global-mode: t
  tooltip-mode: t
  global-eldoc-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  global-visual-line-mode: t
  visual-line-mode: t
  transient-mark-mode: t

Load-path shadows:
~/.emacs.d/lisp/org-pdftools hides /Users/satibodhi/.emacs.d/elpa/org-pdftools-20200929.2241/org-pdftools
/Users/satibodhi/quicklisp/dists/quicklisp/software/slime-v2.24/slime-autoloads hides /Users/satibodhi/.emacs.d/elpa/slime-20200810.224/slime-autoloads
/Users/satibodhi/quicklisp/dists/quicklisp/software/slime-v2.24/slime-tests hides /Users/satibodhi/.emacs.d/elpa/slime-20200810.224/slime-tests
/Users/satibodhi/quicklisp/dists/quicklisp/software/slime-v2.24/slime hides /Users/satibodhi/.emacs.d/elpa/slime-20200810.224/slime
~/.emacs.d/lisp/smartparens/smartparens-pkg hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-pkg
~/.emacs.d/lisp/smartparens/smartparens-haskell hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-haskell
~/.emacs.d/lisp/smartparens/smartparens-javascript hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-javascript
~/.emacs.d/lisp/smartparens/smartparens-text hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-text
~/.emacs.d/lisp/smartparens/smartparens hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens
~/.emacs.d/lisp/smartparens/smartparens-racket hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-racket
~/.emacs.d/lisp/smartparens/smartparens-ess hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-ess
~/.emacs.d/lisp/smartparens/smartparens-ml hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-ml
~/.emacs.d/lisp/smartparens/smartparens-clojure hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-clojure
~/.emacs.d/lisp/smartparens/smartparens-python hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-python
~/.emacs.d/lisp/smartparens/smartparens-latex hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-latex
~/.emacs.d/lisp/smartparens/smartparens-rst hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-rst
~/.emacs.d/lisp/smartparens/smartparens-scala hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-scala
~/.emacs.d/lisp/smartparens/smartparens-elixir hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-elixir
~/.emacs.d/lisp/smartparens/smartparens-markdown hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-markdown
~/.emacs.d/lisp/smartparens/smartparens-rust hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-rust
~/.emacs.d/lisp/smartparens/smartparens-autoloads hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-autoloads
~/.emacs.d/lisp/smartparens/smartparens-html hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-html
~/.emacs.d/lisp/smartparens/smartparens-c hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-c
~/.emacs.d/lisp/smartparens/smartparens-org hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-org
~/.emacs.d/lisp/smartparens/smartparens-lua hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-lua
~/.emacs.d/lisp/smartparens/smartparens-crystal hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-crystal
~/.emacs.d/lisp/smartparens/smartparens-config hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-config
~/.emacs.d/lisp/smartparens/smartparens-ruby hides /Users/satibodhi/.emacs.d/elpa/smartparens-20201007.1753/smartparens-ruby
~/.emacs.d/lisp/url-util hides /Applications/Emacs.app/Contents/Resources/lisp/url/url-util
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-stan hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-stan
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-exp hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-exp
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-J hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-J
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-emacs-lisp hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-emacs-lisp
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-css hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-css
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-lob hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-lob
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-forth hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-forth
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-macs hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-macs
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-version hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-version
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-scheme hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-scheme
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-abc hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-abc
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-C hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-C
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-capture hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-capture
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-ref hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-ref
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-clojure hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-clojure
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-mouse hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-mouse
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-ledger hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-ledger
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-ctags hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-ctags
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-entities hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-entities
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-archive hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-archive
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-screen hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-screen
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-haskell hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-haskell
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-asymptote hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-asymptote
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-table hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-table
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-org hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-org
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-plot hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-plot
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-awk hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-awk
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-groovy hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-groovy
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-octave hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-octave
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-faces hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-faces
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-colview hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-colview
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-R hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-R
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-timer hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-timer
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-ebnf hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-ebnf
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-mobile hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-mobile
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-fortran hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-fortran
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-shell hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-shell
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-perl hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-perl
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-sqlite hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-sqlite
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-sed hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-sed
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-list hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-list
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-ruby hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-ruby
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-eval hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-eval
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-habit hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-habit
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-clock hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-clock
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-html hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-html
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-src hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-src
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-lisp hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-lisp
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-ditaa hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-ditaa
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-pcomplete hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-pcomplete
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-lint hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-lint
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-latex hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-latex
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-sass hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-sass
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-io hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-io
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-tangle hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-tangle
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-calc hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-calc
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-java hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-java
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-icalendar hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-icalendar
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-md hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-md
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-beamer hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-beamer
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-element hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-element
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-protocol hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-protocol
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-mscgen hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-mscgen
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-gnuplot hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-gnuplot
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-latex hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-latex
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-id hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-id
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-vala hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-vala
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-man hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-man
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-feed hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-feed
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-lua hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-lua
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-table hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-table
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-ocaml hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-ocaml
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-coq hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-coq
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-picolisp hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-picolisp
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-indent hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-indent
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-lilypond hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-lilypond
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-matlab hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-matlab
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-datetree hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-datetree
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-python hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-python
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-makefile hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-makefile
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-duration hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-duration
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-agenda hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-agenda
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-dot hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-dot
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-js hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-js
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-publish hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-publish
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-inlinetask hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-inlinetask
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-org hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-org
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-core hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-core
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-compat hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-compat
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-odt hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-odt
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-plantuml hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-plantuml
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-ascii hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-ascii
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-loaddefs hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-loaddefs
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-hledger hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-hledger
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-maxima hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-maxima
/Users/satibodhi/.emacs.d/elpa/org-9.4/org hides /Applications/Emacs.app/Contents/Resources/lisp/org/org
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-macro hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-macro
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-sql hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-sql
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-attach hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-attach
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-processing hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-processing
/Users/satibodhi/.emacs.d/elpa/org-9.4/ox-texinfo hides /Applications/Emacs.app/Contents/Resources/lisp/org/ox-texinfo
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-crypt hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-crypt
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-footnote hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-footnote
/Users/satibodhi/.emacs.d/elpa/org-9.4/org-install hides /Applications/Emacs.app/Contents/Resources/lisp/org/org-install
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-comint hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-comint
/Users/satibodhi/.emacs.d/elpa/org-9.4/ob-shen hides /Applications/Emacs.app/Contents/Resources/lisp/org/ob-shen

Features:
(shadow mail-extr emacsbug sendmail org-zotxt org-indent image-file
ol-eww eww mm-url shr svg ol-rmail ol-mhe ol-irc ol-info ol-gnus nnir
gnus-sum gnus-group gnus-undo gnus-start gnus-cloud nnimap nnmail
mail-source utf7 netrc nnoo gnus-spec gnus-int gnus-range gnus-win gnus
nnheader ol-docview doc-view ol-bbdb ol-w3m ielm org-ref
org-ref-helm-bibtex org-ref-helm helm-utils helm-bibtex helm-net
helm-help helm-config org-ref-core reftex-cite reftex reftex-loaddefs
reftex-vars org-ref-glossary org-ref-bibtex org-ref-citeproc key-chord
doi-utils org-ref-utils org-ref-pdf ol-bibtex ivy-bibtex
bibtex-completion org-capture biblio biblio-download biblio-dissemin
biblio-ieee biblio-hal biblio-dblp biblio-crossref biblio-arxiv
biblio-doi biblio-core url-queue f yasnippet elec-pair
highlight-indentation flymake-proc flymake warnings elpy elpy-rpc pyvenv
esh-var esh-io esh-cmd esh-opt esh-ext esh-proc esh-arg esh-groups
eshell esh-module esh-mode esh-util elpy-shell elpy-profile elpy-django
elpy-refactor files-x slime-fancy slime-indentation slime-cl-indent
cl-indent slime-trace-dialog slime-fontifying-fu slime-package-fu
slime-references slime-compiler-notes-tree slime-scratch
slime-presentations bridge slime-macrostep macrostep slime-mdot-fu
slime-enclosing-context slime-fuzzy slime-fancy-trace
slime-fancy-inspector slime-c-p-c slime-editing-commands slime-autodoc
slime-repl slime-parse slime arc-mode archive-mode hyperspec browse-url
ob-latex ob-plantuml ob-org ob-ledger ob-clojure ob-gnuplot ob-shell
ob-ruby ob-python python-el-fgallina-expansions smartparens-python
python tramp-sh tramp tramp-compat tramp-loaddefs trampver parse-time
ob-R ob-ditaa ob-dot org-mac-link org2blog ox-wp metaweblog xml-rpc
timezone xml hydra lv htmlize org-mind-map ox-org org-outline-numbering
ov ox-odt ox-latex ox-icalendar ox-html table ox-ascii ox-publish ox
org-drill persist org-id org-agenda org-refile org-pdftools pdf-occur
pdf-isearch let-alist pdf-annot tablist tablist-filter
semantic/wisent/comp semantic/wisent semantic/wisent/wisent
semantic/util-modes semantic/util semantic semantic/tag semantic/lex
semantic/fw mode-local cedet pdf-misc pdf-tools pdf-view magit-bookmark
bookmark jka-compr pdf-cache pdf-info tq pdf-util image-mode org-noter
org-bullets ebib ebib-reading-list ebib-notes org-element avl-tree
generator ebib-filters ebib-keywords ebib-utils ebib-db parsebib pp
bibtex elmacro csv-mode sort openwith engine-mode gedcom try zotxt
deferred moedict cl esqlite pcsv helm helm-global-bindings helm-easymenu
helm-source eieio-compat helm-multi-match helm-lib rainbow-delimiters
free-keys adaptive-wrap org-annotate desktop frameset cnfonts cnfonts-ui
cus-edit wid-edit zenburn-theme quelpa-use-package quelpa lisp-mnt
help-fns radix-tree company-oddmuse company-keywords company-etags etags
company-gtags company-dabbrev-code company-dabbrev company-files
company-clang company-capf company-cmake company-semantic
company-template company-bbdb the-org-mode-expansions smartparens-org
org ob ob-tangle ob-ref ob-lob ob-table ob-exp org-macro org-footnote
org-src ob-comint org-pcomplete org-list org-faces org-entities
org-version ob-emacs-lisp ob-core ob-eval org-table ol org-keys
org-compat org-macs org-loaddefs find-func cal-menu calendar
cal-loaddefs web-mode-expansions web-mode haml-mode js-mode-expansions
smartparens-javascript js cc-mode-expansions smartparens-c cc-mode
cc-fonts cc-guess cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars
cc-defs smartparens-markdown markdown-mode noutline outline
css-mode-expansions css-mode ruby-mode-expansions smartparens-ruby
ruby-mode smie yaml-mode define-word nxml-mode-expansions rng-nxml
rng-valid rng-loc rng-uri rng-parse nxml-parse rng-match rng-dt rng-util
rng-pttrn nxml-ns nxml-mode nxml-outln nxml-rap html-mode-expansions
smartparens-html sgml-mode nxml-util nxml-enc xmltok url-http tls gnutls
url-auth url-gw nsm powerthesaurus jeison s rx request url url-proxy
url-privacy url-expand url-methods url-history url-cookie url-domsuf
url-util mailcap json map dom flyspell-correct-popup popup
flyspell-correct flyspell ispell company pcase git-gutter
magit-submodule magit-obsolete magit-blame magit-stash magit-reflog
magit-bisect magit-push magit-pull magit-fetch magit-clone magit-remote
magit-commit magit-sequence magit-notes magit-worktree magit-tag
magit-merge magit-branch magit-reset magit-files magit-refs magit-status
magit magit-repos magit-apply magit-wip magit-log which-func imenu
magit-diff smerge-mode diff-mode magit-core magit-autorevert
magit-margin magit-transient magit-process magit-mode git-commit
transient magit-git magit-section magit-utils crm log-edit message rmc
puny format-spec rfc822 mml mml-sec epa derived epg gnus-util rmail
rmail-loaddefs mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047
rfc2045 mm-util ietf-drums mail-prsvr mailabbrev mail-utils gmm-utils
mailheader pcvs-util add-log with-editor async-bytecomp async shell
pcomplete server counsel-projectile ivy-rich subr-x avy smex ido counsel
xdg xref project dired dired-loaddefs swiper ivy flx ivy-faces
ivy-overlay colir color projectile grep compile ibuf-ext ibuffer
ibuffer-loaddefs winner windmove multiple-cursors mc-separate-operations
rectangular-region-mode mc-mark-pop mc-edit-lines
mc-hide-unmatched-lines-mode mc-mark-more mc-cycle-cursors
multiple-cursors-core rect visual-regexp move-text expand-region
text-mode-expansions er-basic-expansions expand-region-core
expand-region-custom which-key vi-tilde-fringe neotree rich-minority
smartparens-config smartparens-text smartparens advice thingatpt dash
hl-line all-the-icons all-the-icons-faces data-material
data-weathericons data-octicons data-fileicons data-faicons
data-alltheicons memoize tsdh-light-theme undo-fu simpleclip delsel
autorevert filenotify edmacro kmacro paren shell-pop term disp-table
comint ansi-color ehelp ring cus-start cus-load exec-path-from-shell
cl-extra help-mode use-package use-package-ensure use-package-delight
use-package-diminish use-package-bind-key bind-key easy-mmode
use-package-core finder-inf tex-site org2blog-autoloads slime-autoloads
info package easymenu epg-config url-handlers url-parse auth-source
cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache url-vars
seq byte-opt gv bytecomp byte-compile cconv cl-loaddefs cl-lib time-date
tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type
mwheel term/ns-win ns-win ucs-normalize mule-util term/common-win
tool-bar dnd fontset image regexp-opt fringe tabulated-list replace
newcomment text-mode elisp-mode lisp-mode prog-mode register page
menu-bar rfn-eshadow isearch timer select scroll-bar mouse jit-lock
font-lock syntax facemenu font-core term/tty-colors frame cl-generic
cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao
korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech
european ethiopic indian cyrillic chinese composite charscript charprop
case-table epa-hook jka-cmpr-hook help simple abbrev obarray minibuffer
cl-preloaded nadvice loaddefs button faces cus-face macroexp files
text-properties overlay sha1 md5 base64 format env code-pages mule
custom widget hashtable-print-readable backquote threads kqueue cocoa ns
multi-tty make-network-process emacs)

Memory information:
((conses 16 852020 38672)
(symbols 48 75622 2)
(miscs 40 134 453)
(strings 32 234968 12102)
(string-bytes 1 7383170)
(vectors 16 123191)
(vector-slots 8 2319036 79632)
(floats 8 1095 22)
(intervals 56 1090 163)
(buffers 992 15))




bug reassigned from package 'emacs' to 'org-mode'. Request was from Glenn Morris <rgm <at> gnu.org> to control <at> debbugs.gnu.org. (Mon, 16 Nov 2020 16:50:02 GMT) Full text and rfc822 format available.

bug No longer marked as found in versions 26.3. Request was from Glenn Morris <rgm <at> gnu.org> to control <at> debbugs.gnu.org. (Mon, 16 Nov 2020 16:50:02 GMT) Full text and rfc822 format available.

Information forwarded to emacs-orgmode <at> gnu.org:
bug#44687; Package org-mode. (Tue, 07 Dec 2021 03:16:02 GMT) Full text and rfc822 format available.

Message #12 received at 44687 <at> debbugs.gnu.org (full text, mbox):

From: Kyle Meyer <kyle <at> kyleam.com>
To: YH Tan <astyh83 <at> gmail.com>
Cc: 44687 <at> debbugs.gnu.org
Subject: Re: bug#44687: 26.3; Link broken in inline comment
Date: Mon, 06 Dec 2021 22:15:47 -0500
tags 44687 wontfix
close 44687
quit

YH Tan writes:

> In org-mode,
>
> ```
> [[link]]@@comment:[[link]]@@
> # [[link]]
>
> * link
> ```
>
> I get the message "No Link Found" when clicking on the [[link]] within
> the inline @@comment:[[link]]@@.
>
> The link works fine with emacs -Q, but breaks after evaluating some
> init.el code.
>
> Problem is, I cannot pinpoint to the exact code that broke the link.

I'm sorry you didn't get a response at the time.

Your recipe starts complaining "No Link Found" as of Org's d3774fba7,
which was a part of the 9.2 release:

  Limit `org-open-at-point'
  
  * lisp/org.el (org-open-at-point): Do not open everything that looks
    like a link, in particular in verbatim or code objects.  However,
    still conveniently open links in comments, node properties and
    keywords.

The Org bundled with Emacs 26.3 was 9.1.9, so the difference you
reported between your regular environment and 'emacs -Q' is very likely
explained by the above commit being included in the Org available from
ELPA but not yet included in the Org that shipped with Emacs 26.3.

My understanding is that no longer being able to open a link (or rather
text that resembles a link) in an export snippet is an intentional
consequence of that commit, so I'm closing this as wontfix.  (But fwiw
calling org-open-at-point-global rather than org-open-at-point should
give the behavior you're after.)




Added tag(s) wontfix. Request was from Kyle Meyer <kyle <at> kyleam.com> to control <at> debbugs.gnu.org. (Tue, 07 Dec 2021 03:16:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 44687 <at> debbugs.gnu.org and YH Tan <astyh83 <at> gmail.com> Request was from Kyle Meyer <kyle <at> kyleam.com> to control <at> debbugs.gnu.org. (Tue, 07 Dec 2021 03:16:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 04 Jan 2022 12:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 74 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.