emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master c8a0397 29/76: Fixed some compilation errors in enwc.el.


From: Ian Dunn
Subject: [elpa] master c8a0397 29/76: Fixed some compilation errors in enwc.el.
Date: Thu, 23 Feb 2017 19:42:48 -0500 (EST)

branch: master
commit c8a0397cc50f49e0db23b1ac65581566bce1f4c7
Author: Ian D <address@hidden>
Commit: Ian D <address@hidden>

    Fixed some compilation errors in enwc.el.
---
 lisp/enwc.el | 45 +++++++++++++++++++++++----------------------
 1 file changed, 23 insertions(+), 22 deletions(-)

diff --git a/lisp/enwc.el b/lisp/enwc.el
index ec54086..669360c 100644
--- a/lisp/enwc.el
+++ b/lisp/enwc.el
@@ -239,30 +239,31 @@ This is only used internally.")
   "The face for the connected network."
   :group 'enwc)
 
-(defun enwc--break-by-words (str)
-  "Break up string STR into a list of words."
-  (cl-check-type str string)
-  (split-string str "-\\|_\\| "))
-
-(defun enwc--sym-to-str (sym &optional seps)
-  "Create a string from symbol SYM.
+(eval-when-compile
+  (defun enwc--break-by-words (str)
+    "Break up string STR into a list of words."
+    (cl-check-type str string)
+    (split-string str "-\\|_\\| "))
+
+  (defun enwc--sym-to-str (sym &optional seps)
+    "Create a string from symbol SYM.
 SEPS is a string specifying the separator to use to combine the words,
 or \" \" if not specified."
-  (cl-check-type sym symbol)
-  (unless seps
-    (setq seps " "))
-  (cl-check-type seps string)
-  (combine-and-quote-strings (enwc--break-by-words (symbol-name sym)) seps))
-
-(defun enwc--str-to-sym (str &optional seps)
-  "Create a symbol from the string STR.
+    (cl-check-type sym symbol)
+    (unless seps
+      (setq seps " "))
+    (cl-check-type seps string)
+    (combine-and-quote-strings (enwc--break-by-words (symbol-name sym)) seps))
+
+  (defun enwc--str-to-sym (str &optional seps)
+    "Create a symbol from the string STR.
 This will break STR into words, and then put it back together separating
 each word by SEPS, which defaults to \"-\"."
-  (cl-check-type str string)
-  (unless seps
-    (setq seps "-"))
-  (cl-check-type seps string)
-  (intern (combine-and-quote-strings (enwc--break-by-words str) seps)))
+    (cl-check-type str string)
+    (unless seps
+      (setq seps "-"))
+    (cl-check-type seps string)
+    (intern (combine-and-quote-strings (enwc--break-by-words str) seps))))
 
 (defun enwc--int-to-byte-list (n)
   "Convert 32-bit integer N into a byte list."
@@ -274,7 +275,7 @@ each word by SEPS, which defaults to \"-\"."
 
 (defun enwc--byte-list-to-int (bl)
   "Convert byte list BL into a 32-bit integer."
-  (cl-check-type n list)
+  (cl-check-type bl list)
   (let ((ret 0))
     (dolist (x bl ret)
       (setq ret (logior (lsh ret 8) x)))))
@@ -631,7 +632,7 @@ Otherwise, it actually returns it."
         need-break cur-net)
     (while (and nets (not cur-net))
       (setq cur-net (pop nets))
-      (unless (string-equal (alist-get 'essid (cdr-safe cur-ent))
+      (unless (string-equal (alist-get 'essid (cdr-safe cur-net))
                             essid)
         (setq cur-net nil)))
     (if cur-net



reply via email to

[Prev in Thread] Current Thread [Next in Thread]