branch: externals/osc
commit 092b443d0aafb41b9a2dee425564d841b83d72e8
Author: Mario Lang <[email protected]>
Commit: Mario Lang <[email protected]>
Release version 0.2
---
osc.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/osc.el b/osc.el
index 5450751..a63d382 100644
--- a/osc.el
+++ b/osc.el
@@ -3,7 +3,7 @@
;; Copyright (C) 2014-2019 Free Software Foundation, Inc.
;; Author: Mario Lang <[email protected]>
-;; Version: 0.1
+;; Version: 0.2
;; Keywords: comm, processes, multimedia
;; This program is free software; you can redistribute it and/or modify
@@ -39,11 +39,11 @@
;; Usage:
;;
-;; Client: (setq my-client (osc-make-client "localhost" 7770))
+;; Client: (setq my-client (osc-make-client "127.0.0.1" 7770))
;; (osc-send-message my-client "/osc/path" 1.5 1.0 5 "done")
;; (delete-process my-client)
;;
-;; Server: (setq my-server (osc-make-server "localhost" 7770
+;; Server: (setq my-server (osc-make-server "127.0.0.1" 7770
;; (lambda (path &rest args)
;; (message "OSC %s: %S" path args))))