-
Notifications
You must be signed in to change notification settings - Fork 28
/
stubs.el
38 lines (28 loc) · 940 Bytes
/
stubs.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;;; -*- lexical-binding: t; -*-
(defun help-uni-confusable-suggestions (string)
"stub of function for bootstrapping"
nil)
(defun help-add-fundoc-usage (docstring arglist)
"stub of function for bootstrapping"
docstring)
(defun substitute-command-keys (string &optional no-face)
"stub of function for bootstrapping"
string)
(defun help--docstring-quote (string)
"stub of function for bootstrapping"
string)
(defun help-add-fundoc-usage (docstring arglist)
"stub of function for bootstrapping"
docstring)
(defun help-split-fundoc (docstring def &optional section)
"stub of function for bootstrapping"
(cons docstring ""))
(defmacro trace (type &rest body)
`(prog2 (message "BEGIN: %s" ,type)
,@body
(message "END: %s" ,type)))
(defmacro trace-return (type &rest body)
`(progn (message "BEGIN: %s" ,type)
(let ((val ,@body))
(message "RETURN: %s: %s" ,type val)
val)))