##// END OF EJS Templates
mercurial.el, mq.el: remove runtime dependencies on CL package...
NIIMI Satoshi -
r5465:9873cbb1 default
parent child Browse files
Show More
@@ -521,7 +521,7 b' directory names from the file system. W'
521 (completing-read (format "Revision%s (%s): "
521 (completing-read (format "Revision%s (%s): "
522 (or prompt "")
522 (or prompt "")
523 (or default "tip"))
523 (or default "tip"))
524 (map 'list 'cons revs revs)
524 (mapcar (lambda (x) (cons x x)) revs)
525 nil
525 nil
526 nil
526 nil
527 nil
527 nil
@@ -18,6 +18,7 b''
18 ;; C-l'). If not, write to the Free Software Foundation, Inc., 59
18 ;; C-l'). If not, write to the Free Software Foundation, Inc., 59
19 ;; Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 ;; Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
20
21 (eval-when-compile (require 'cl))
21 (require 'mercurial)
22 (require 'mercurial)
22
23
23
24
@@ -102,7 +103,7 b' May return nil, meaning \\"use the defaul'
102 (hg-chomp (hg-run0 (or source "qseries"))) "\n")))
103 (hg-chomp (hg-run0 (or source "qseries"))) "\n")))
103 (when force
104 (when force
104 (completing-read (format "Patch%s: " (or prompt ""))
105 (completing-read (format "Patch%s: " (or prompt ""))
105 (map 'list 'cons patches patches)
106 (mapcar (lambda (x) (cons x x)) patches)
106 nil
107 nil
107 nil
108 nil
108 nil
109 nil
General Comments 0
You need to be logged in to leave comments. Login now