Skip to content

Commit

Permalink
Fix two nits.
Browse files Browse the repository at this point in the history
This patch corrects a spelling error & removes some commented-out
code.
  • Loading branch information
sp1ff committed Feb 4, 2024
1 parent c9e413f commit 19c6ebe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions elmpd.el
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ Return nil if not found, else return a list of length five:
;;
;; The algorithm:
;;
;; 1. let `buf' be the un-parsed response so far, icnluding OUTPUT
;; 1. let `buf' be the un-parsed response so far, including OUTPUT
;; (i.e. the remnants of previous response chunks if any with
;; OUTPUT appended thereto)
;;
Expand Down Expand Up @@ -781,7 +781,6 @@ as soon as possible."
(fd
(if (and local (file-exists-p local))
(make-network-process :name name :remote local :nowait t)
;; (make-network-process :name name :host host :service port :nowait t)
(make-network-process
:name name
:host host
Expand Down
2 changes: 1 addition & 1 deletion test/smoke-tests.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

(require 'elmpd)
(setq elmpd-log-level 'debug)
(setq conn (elmpd-connect :host "192.168.1.6" :port 6600 :local nil
(setq conn (elmpd-connect :host "127.0.0.1" :port 6600 :local nil
:subsystems '(all . (lambda (_ subsys)
(message "%s changed" subsys)))))
(elmpd-send conn "play" (lambda (_ ok text) (message "play: %s %s" ok text)))
Expand Down

0 comments on commit 19c6ebe

Please sign in to comment.