org-id: Use lexical binding

* lisp/org-id.el (org-id-get-with-outline-drilling): Remove unused
  optional argument.
This commit is contained in:
Nicolas Goaziou 2015-11-14 00:05:50 +01:00
parent 8bbb789757
commit b48da39ed4
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
;;; org-id.el --- Global identifiers for Org-mode entries ;;; org-id.el --- Global identifiers for Org entries -*- lexical-binding: t; -*-
;; ;;
;; Copyright (C) 2008-2015 Free Software Foundation, Inc. ;; Copyright (C) 2008-2015 Free Software Foundation, Inc.
;; ;;
@ -278,7 +278,7 @@ If necessary, the ID is created."
(move-marker pom nil)))) (move-marker pom nil))))
;;;###autoload ;;;###autoload
(defun org-id-get-with-outline-drilling (&optional targets) (defun org-id-get-with-outline-drilling ()
"Use an outline-cycling interface to retrieve the ID of an entry. "Use an outline-cycling interface to retrieve the ID of an entry.
This only finds entries in the current buffer, using `org-get-location'. This only finds entries in the current buffer, using `org-get-location'.
It returns the ID of the entry. If necessary, the ID is created." It returns the ID of the entry. If necessary, the ID is created."