File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 5
5
; ; Author: Takashi Masuda <masutaka.net@gmail.com>
6
6
; ; URL: https://github.com/masutaka/emacs-helm-qiita
7
7
; ; Version: 1.0.0
8
- ; ; Package-Requires: ((helm "1.9.5") (cl-lib "0.5") )
8
+ ; ; Package-Requires: ((helm "1.9.5"))
9
9
10
10
; ; This program is free software: you can redistribute it and/or modify
11
11
; ; it under the terms of the GNU General Public License as published by
27
27
28
28
(require 'helm )
29
29
(require 'json )
30
- (require 'cl-lib )
31
30
32
31
(defgroup helm-qiita nil
33
32
" Qiita with helm interface"
@@ -261,7 +260,7 @@ Argument RESPONSE-BODY is http response body as a json"
261
260
" Return tags of STOCK, as an list."
262
261
(let ((tags (cdr (assoc 'tags stock))) result)
263
262
(dotimes (i (length tags))
264
- (cl-pushnew ( cdr (assoc 'name (aref tags i))) result :test # 'equal ))
263
+ (setq result ( cons ( cdr (assoc 'name (aref tags i))) result) ))
265
264
(reverse result)))
266
265
267
266
; ;; Debug
You can’t perform that action at this time.
0 commit comments