]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/pcase.el (get-edebug-spec, edebug-match)
authorGlenn Morris <rgm@gnu.org>
Fri, 1 May 2015 17:40:31 +0000 (13:40 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 1 May 2015 17:40:31 +0000 (13:40 -0400)
(help-fns--signature): Declare.

lisp/emacs-lisp/pcase.el

index b4bf6404bef530a18308a7536ffe28d9e57d5df7..5a81bb20e57969af0ece776ad6de3c8cd41446a7 100644 (file)
 
 (def-edebug-spec pcase-MACRO pcase--edebug-match-macro)
 
+;; Only called from edebug.
+(declare-function get-edebug-spec "edebug" (symbol))
+(declare-function edebug-match "edebug" (cursor specs))
+
 (defun pcase--edebug-match-macro (cursor)
   (let (specs)
     (mapatoms
@@ -158,6 +162,9 @@ Currently, the following patterns are provided this way:"
         ;; (puthash (car cases) `(,exp ,cases ,@expansion) pcase--memoize-2)
         expansion))))
 
+(declare-function help-fns--signature "help-fns"
+                  (function doc real-def real-function))
+
 ;; FIXME: Obviously, this will collide with nadvice's use of
 ;; function-documentation if we happen to advise `pcase'.
 (put 'pcase 'function-documentation '(pcase--make-docstring))