update packages
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
;;; ol-elisp-symbol.el --- Links to Emacs-lisp symbols
|
||||
;;; ol-elisp-symbol.el --- Links to Emacs-lisp symbols -*- lexical-binding: t; -*-
|
||||
;;
|
||||
;; Copyright 2007-2021 Free Software Foundation, Inc.
|
||||
;;
|
||||
@@ -99,7 +99,7 @@
|
||||
(sym-name (intern-soft name))
|
||||
(stype (cond ((commandp sym-name) "Command")
|
||||
((functionp sym-name) "Function")
|
||||
((user-variable-p sym-name) "User variable")
|
||||
((custom-variable-p sym-name) "User variable")
|
||||
((string= def "defvar") "Variable")
|
||||
((string= def "defmacro") "Macro")
|
||||
((string= def "defun") "Function or command")
|
||||
@@ -133,7 +133,7 @@
|
||||
(setq link (concat "file:" (abbreviate-file-name buffer-file-name)
|
||||
"::" def " " name))
|
||||
(setq description (concat stype ": " name))
|
||||
(org-store-link-props
|
||||
(org-link-store-props
|
||||
:type "elisp-symbol"
|
||||
:link link
|
||||
:description description
|
||||
|
||||
Reference in New Issue
Block a user