mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-18 c655eea759be1db69c5e6b45c228139d8390122a
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
;;; anaphora-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
 
(add-to-list 'load-path (directory-file-name
                         (or (file-name-directory #$) (car load-path))))
 
 
;;;### (autoloads nil "anaphora" "anaphora.el" (0 0 0 0))
;;; Generated autoloads from anaphora.el
 
(let ((loads (get 'anaphora 'custom-loads))) (if (member '"anaphora" loads) nil (put 'anaphora 'custom-loads (cons '"anaphora" loads))))
 
(defvar anaphora-use-long-names-only nil "\
Use only long names such as `anaphoric-if' instead of traditional `aif'.")
 
(custom-autoload 'anaphora-use-long-names-only "anaphora" t)
 
(defun anaphora--install-traditional-aliases (&optional arg) "\
Install traditional short aliases for anaphoric macros.
 
With negative numeric ARG, remove traditional aliases." (let ((syms (quote ((if . t) (prog1 . t) (prog2 . t) (when . when) (while . t) (and . t) (cond . cond) (lambda . lambda) (block . block) (case . case) (ecase . ecase) (typecase . typecase) (etypecase . etypecase) (let . let) (+ . t) (- . t) (* . t) (/ . t))))) (cond ((and (numberp arg) (< arg 0)) (dolist (cell syms) (when (ignore-errors (eq (symbol-function (intern-soft (format "a%s" (car cell)))) (intern-soft (format "anaphoric-%s" (car cell))))) (fmakunbound (intern (format "a%s" (car cell))))))) (t (dolist (cell syms) (let* ((builtin (car cell)) (traditional (intern (format "a%s" builtin))) (long (intern (format "anaphoric-%s" builtin)))) (defalias traditional long) (put traditional (quote lisp-indent-function) (get builtin (quote lisp-indent-function))) (put traditional (quote edebug-form-spec) (cdr cell))))))))
 
(unless anaphora-use-long-names-only (anaphora--install-traditional-aliases))
 
(autoload 'anaphoric-if "anaphora" "\
Like `if', but the result of evaluating COND is bound to `it'.
 
The variable `it' is available within THEN and ELSE.
 
COND, THEN, and ELSE are otherwise as documented for `if'.
 
\(fn COND THEN &rest ELSE)" nil t)
 
(function-put 'anaphoric-if 'lisp-indent-function '2)
 
(autoload 'anaphoric-prog1 "anaphora" "\
Like `prog1', but the result of evaluating FIRST is bound to `it'.
 
The variable `it' is available within BODY.
 
FIRST and BODY are otherwise as documented for `prog1'.
 
\(fn FIRST &rest BODY)" nil t)
 
(function-put 'anaphoric-prog1 'lisp-indent-function '1)
 
(autoload 'anaphoric-prog2 "anaphora" "\
Like `prog2', but the result of evaluating FORM2 is bound to `it'.
 
The variable `it' is available within BODY.
 
FORM1, FORM2, and BODY are otherwise as documented for `prog2'.
 
\(fn FORM1 FORM2 &rest BODY)" nil t)
 
(function-put 'anaphoric-prog2 'lisp-indent-function '2)
 
(autoload 'anaphoric-when "anaphora" "\
Like `when', but the result of evaluating COND is bound to `it'.
 
The variable `it' is available within BODY.
 
COND and BODY are otherwise as documented for `when'.
 
\(fn COND &rest BODY)" nil t)
 
(function-put 'anaphoric-when 'lisp-indent-function '1)
 
(autoload 'anaphoric-while "anaphora" "\
Like `while', but the result of evaluating TEST is bound to `it'.
 
The variable `it' is available within BODY.
 
TEST and BODY are otherwise as documented for `while'.
 
\(fn TEST &rest BODY)" nil t)
 
(function-put 'anaphoric-while 'lisp-indent-function '1)
 
(autoload 'anaphoric-and "anaphora" "\
Like `and', but the result of the previous condition is bound to `it'.
 
The variable `it' is available within all CONDITIONS after the
initial one.
 
CONDITIONS are otherwise as documented for `and'.
 
Note that some implementations of this macro bind only the first
condition to `it', rather than each successive condition.
 
\(fn &rest CONDITIONS)" nil t)
 
(autoload 'anaphoric-cond "anaphora" "\
Like `cond', but the result of each condition is bound to `it'.
 
The variable `it' is available within the remainder of each of CLAUSES.
 
CLAUSES are otherwise as documented for `cond'.
 
\(fn &rest CLAUSES)" nil t)
 
(autoload 'anaphoric-lambda "anaphora" "\
Like `lambda', but the function may refer to itself as `self'.
 
ARGS and BODY are otherwise as documented for `lambda'.
 
\(fn ARGS &rest BODY)" nil t)
 
(function-put 'anaphoric-lambda 'lisp-indent-function 'defun)
 
(autoload 'anaphoric-block "anaphora" "\
Like `block', but the result of the previous expression is bound to `it'.
 
The variable `it' is available within all expressions of BODY
except the initial one.
 
NAME and BODY are otherwise as documented for `block'.
 
\(fn NAME &rest BODY)" nil t)
 
(function-put 'anaphoric-block 'lisp-indent-function '1)
 
(autoload 'anaphoric-case "anaphora" "\
Like `case', but the result of evaluating EXPR is bound to `it'.
 
The variable `it' is available within CLAUSES.
 
EXPR and CLAUSES are otherwise as documented for `case'.
 
\(fn EXPR &rest CLAUSES)" nil t)
 
(function-put 'anaphoric-case 'lisp-indent-function '1)
 
(autoload 'anaphoric-ecase "anaphora" "\
Like `ecase', but the result of evaluating EXPR is bound to `it'.
 
The variable `it' is available within CLAUSES.
 
EXPR and CLAUSES are otherwise as documented for `ecase'.
 
\(fn EXPR &rest CLAUSES)" nil t)
 
(function-put 'anaphoric-ecase 'lisp-indent-function '1)
 
(autoload 'anaphoric-typecase "anaphora" "\
Like `typecase', but the result of evaluating EXPR is bound to `it'.
 
The variable `it' is available within CLAUSES.
 
EXPR and CLAUSES are otherwise as documented for `typecase'.
 
\(fn EXPR &rest CLAUSES)" nil t)
 
(function-put 'anaphoric-typecase 'lisp-indent-function '1)
 
(autoload 'anaphoric-etypecase "anaphora" "\
Like `etypecase', but result of evaluating EXPR is bound to `it'.
 
The variable `it' is available within CLAUSES.
 
EXPR and CLAUSES are otherwise as documented for `etypecase'.
 
\(fn EXPR &rest CLAUSES)" nil t)
 
(function-put 'anaphoric-etypecase 'lisp-indent-function '1)
 
(autoload 'anaphoric-let "anaphora" "\
Like `let', but the result of evaluating FORM is bound to `it'.
 
FORM and BODY are otherwise as documented for `let'.
 
\(fn FORM &rest BODY)" nil t)
 
(function-put 'anaphoric-let 'lisp-indent-function '1)
 
(autoload 'anaphoric-+ "anaphora" "\
Like `+', but the result of evaluating the previous expression is bound to `it'.
 
The variable `it' is available within all expressions after the
initial one.
 
NUMBERS-OR-MARKERS are otherwise as documented for `+'.
 
\(fn &rest NUMBERS-OR-MARKERS)" nil t)
 
(autoload 'anaphoric-- "anaphora" "\
Like `-', but the result of evaluating the previous expression is bound to `it'.
 
The variable `it' is available within all expressions after the
initial one.
 
NUMBER-OR-MARKER and NUMBERS-OR-MARKERS are otherwise as
documented for `-'.
 
\(fn &optional NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)" nil t)
 
(autoload 'anaphoric-* "anaphora" "\
Like `*', but the result of evaluating the previous expression is bound to `it'.
 
The variable `it' is available within all expressions after the
initial one.
 
NUMBERS-OR-MARKERS are otherwise as documented for `*'.
 
\(fn &rest NUMBERS-OR-MARKERS)" nil t)
 
(autoload 'anaphoric-/ "anaphora" "\
Like `/', but the result of evaluating the previous divisor is bound to `it'.
 
The variable `it' is available within all expressions after the
first divisor.
 
DIVIDEND, DIVISOR, and DIVISORS are otherwise as documented for `/'.
 
\(fn DIVIDEND DIVISOR &rest DIVISORS)" nil t)
 
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "anaphora" '("anaphora-install-font-lock-keywords")))
 
;;;***
 
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; anaphora-autoloads.el ends here