all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 9bec23a81e34967ed3db571d59e90e0daeb06488 4889 bytes (raw)
name: test/lisp/emacs-lisp/bytecomp-resources/fun-attr-warn.el 	 # note: path name is non-authoritative(*)

  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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
 
;;; -*- lexical-binding: t -*-

;; Correct

(defun faw-str-decl-code (x)
  "something"
  (declare (pure t))
  (print x))

(defun faw-doc-decl-code (x)
  (:documentation "something")
  (declare (pure t))
  (print x))

(defun faw-str-int-code (x)
  "something"
  (interactive "P")
  (print x))

(defun faw-doc-int-code (x)
  (:documentation "something")
  (interactive "P")
  (print x))

(defun faw-decl-int-code (x)
  (declare (pure t))
  (interactive "P")
  (print x))

(defun faw-str-decl-int-code (x)
  "something"
  (declare (pure t))
  (interactive "P")
  (print x))

(defun faw-doc-decl-int-code (x)
  (:documentation "something")
  (declare (pure t))
  (interactive "P")
  (print x))


;; Correct (last string is return value)

(defun faw-decl-str ()
  (declare (pure t))
  "something")

(defun faw-decl-int-str ()
  (declare (pure t))
  (interactive)
  "something")

(defun faw-str-str ()
  "something"
  "something else")

(defun faw-doc-str ()
  (:documentation "something")
  "something else")





;; Incorrect (bad order)

(defun faw-int-decl-code (x)
  (interactive "P")
  (declare (pure t))
  (print x))

(defun faw-int-str-code (x)
  (interactive "P")
  "something"
  (print x))

(defun faw-int-doc-code (x)
  (interactive "P")
  (:documentation "something")
  (print x))

(defun faw-decl-str-code (x)
  (declare (pure t))
  "something"
  (print x))

(defun faw-decl-doc-code (x)
  (declare (pure t))
  (:documentation "something")
  (print x))

(defun faw-str-int-decl-code (x)
  "something"
  (interactive "P")
  (declare (pure t))
  (print x))

(defun faw-doc-int-decl-code (x)
  (:documentation "something")
  (interactive "P")
  (declare (pure t))
  (print x))

(defun faw-int-str-decl-code (x)
  (interactive "P")
  "something"
  (declare (pure t))
  (print x))

(defun faw-int-doc-decl-code (x)
  (interactive "P")
  (:documentation "something")
  (declare (pure t))
  (print x))

(defun faw-int-decl-str-code (x)
  (interactive "P")
  (declare (pure t))
  "something"
  (print x))

(defun faw-int-decl-doc-code (x)
  (interactive "P")
  (declare (pure t))
  (:documentation "something")
  (print x))

(defun faw-decl-int-str-code (x)
  (declare (pure t))
  (interactive "P")
  "something"
  (print x))

(defun faw-decl-int-doc-code (x)
  (declare (pure t))
  (interactive "P")
  (:documentation "something")
  (print x))

(defun faw-decl-str-int-code (x)
  (declare (pure t))
  "something"
  (interactive "P")
  (print x))

(defun faw-decl-doc-int-code (x)
  (declare (pure t))
  (:documentation "something")
  (interactive "P")
  (print x))


;; Incorrect (duplication)

(defun faw-str-str-decl-int-code (x)
  "something"
  "something else"
  (declare (pure t))
  (interactive "P")
  (print x))

(defun faw-str-doc-decl-int-code (x)
  "something"
  (:documentation "something else")
  (declare (pure t))
  (interactive "P")
  (print x))

(defun faw-doc-str-decl-int-code (x)
  (:documentation "something")
  "something else"
  (declare (pure t))
  (interactive "P")
  (print x))

(defun faw-doc-doc-decl-int-code (x)
  (:documentation "something")
  (:documentation "something else")
  (declare (pure t))
  (interactive "P")
  (print x))

(defun faw-str-decl-str-int-code (x)
  "something"
  (declare (pure t))
  "something else"
  (interactive "P")
  (print x))

(defun faw-doc-decl-str-int-code (x)
  (:documentation "something")
  (declare (pure t))
  "something else"
  (interactive "P")
  (print x))

(defun faw-str-decl-doc-int-code (x)
  "something"
  (declare (pure t))
  (:documentation "something else")
  (interactive "P")
  (print x))

(defun faw-doc-decl-doc-int-code (x)
  (:documentation "something")
  (declare (pure t))
  (:documentation "something else")
  (interactive "P")
  (print x))

(defun faw-str-decl-decl-int-code (x)
  "something"
  (declare (pure t))
  (declare (indent 1))
  (interactive "P")
  (print x))

(defun faw-doc-decl-decl-int-code (x)
  (:documentation "something")
  (declare (pure t))
  (declare (indent 1))
  (interactive "P")
  (print x))

(defun faw-str-decl-int-decl-code (x)
  "something"
  (declare (pure t))
  (interactive "P")
  (declare (indent 1))
  (print x))

(defun faw-doc-decl-int-decl-code (x)
  (:documentation "something")
  (declare (pure t))
  (interactive "P")
  (declare (indent 1))
  (print x))

(defun faw-str-decl-int-int-code (x)
  "something"
  (declare (pure t))
  (interactive "P")
  (interactive "p")
  (print x))

(defun faw-doc-decl-int-int-code (x)
  (:documentation "something")
  (declare (pure t))
  (interactive "P")
  (interactive "p")
  (print x))

(defun faw-str-int-decl-int-code (x)
  "something"
  (interactive "P")
  (declare (pure t))
  (interactive "p")
  (print x))

(defun faw-doc-int-decl-int-code (x)
  (:documentation "something")
  (interactive "P")
  (declare (pure t))
  (interactive "p")
  (print x))

;; Incorrect (ambiguous string)

(defun faw-str ()
  "something")

debug log:

solving 9bec23a81e3 ...
found 9bec23a81e3 in https://yhetil.org/emacs/74101BB1-B82C-4F6C-8AB1-47A131BC90E6@gmail.com/
found be907b32f47 in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 be907b32f470c4e3c3e8e82c62df67c61691d76b	test/lisp/emacs-lisp/bytecomp-resources/fun-attr-warn.el

applying [1/1] https://yhetil.org/emacs/74101BB1-B82C-4F6C-8AB1-47A131BC90E6@gmail.com/
diff --git a/test/lisp/emacs-lisp/bytecomp-resources/fun-attr-warn.el b/test/lisp/emacs-lisp/bytecomp-resources/fun-attr-warn.el
index be907b32f47..9bec23a81e3 100644

Checking patch test/lisp/emacs-lisp/bytecomp-resources/fun-attr-warn.el...
Applied patch test/lisp/emacs-lisp/bytecomp-resources/fun-attr-warn.el cleanly.

index at:
100644 9bec23a81e34967ed3db571d59e90e0daeb06488	test/lisp/emacs-lisp/bytecomp-resources/fun-attr-warn.el

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.