branch: externals/osc
commit 4652f370dd6a43858e614bdaf8d794ebb996dbc0
Author: Stefan Monnier <[email protected]>
Commit: Stefan Monnier <[email protected]>
* packages/osc/osc.el: Enable lexical-binding
---
osc.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/osc.el b/osc.el
index a63d382..28a1a5c 100644
--- a/osc.el
+++ b/osc.el
@@ -1,6 +1,6 @@
-;;; osc.el --- Open Sound Control protocol library
+;;; osc.el --- Open Sound Control protocol library -*- lexical-binding:t -*-
-;; Copyright (C) 2014-2019 Free Software Foundation, Inc.
+;; Copyright (C) 2014-2020 Free Software Foundation, Inc.
;; Author: Mario Lang <[email protected]>
;; Version: 0.2
@@ -87,7 +87,7 @@
(defun osc-int32 (value)
(let (bytes)
- (dotimes (i 4)
+ (dotimes (_ 4)
(push (% value 256) bytes)
(setq value (/ value 256)))
(apply 'unibyte-string bytes)))
@@ -149,7 +149,7 @@
(defun osc-read-int32 ()
(let ((value 0))
- (dotimes (i 4)
+ (dotimes (_ 4)
(setq value (logior (* value 256) (following-char)))
(forward-char 1))
value))