diff options
author | Sacha Chua <sacha@sachachua.com> | 2024-01-15 09:39:21 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2024-01-15 09:39:21 -0500 |
commit | 9db369a455883b92205a4766457602bdea9371fa (patch) | |
tree | a64084ed1b2112bae014daea6846ec1d6bf4a0c1 | |
parent | c1a15aa9fd74b92f34efdb5847046c28759cae3c (diff) | |
download | emacsconf-el-9db369a455883b92205a4766457602bdea9371fa.tar.xz emacsconf-el-9db369a455883b92205a4766457602bdea9371fa.zip |
tighten up org links
-rw-r--r-- | emacsconf.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/emacsconf.el b/emacsconf.el index df54a78..1a76a84 100644 --- a/emacsconf.el +++ b/emacsconf.el @@ -1076,9 +1076,7 @@ The subheading should match `emacsconf-abstract-heading-regexp'." (cons 'emacsconf (org-element-property :path (org-element-context)))) ((and (derived-mode-p 'org-mode) (org-entry-get-with-inheritance "SLUG")) - (cons 'emacsconf (org-entry-get-with-inheritance "SLUG"))) - ((emacsconf-resolve-talk (symbol-name (symbol-at-point))) - (cons 'emacsconf (symbol-name (symbol-at-point)))))) + (cons 'emacsconf (org-entry-get-with-inheritance "SLUG"))))) (defun emacsconf-insert-talk-title (search) "Insert the talk title matching SEARCH." |