FUEL: make the req-id always a 5-digit number.. prettier that way

modern-harvey2
Björn Lindqvist 2017-06-30 02:31:53 +02:00
parent e8099389f9
commit fb50f04821
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
(defun fuel-con--make-request (str cont &optional sender-buffer)
(list :fuel-connection-request
(cons :id (random))
(cons :id (+ 10000 (random 89999)))
(cons :string str)
(cons :continuation cont)
(cons :buffer (or sender-buffer (current-buffer)))))