क्लूलेस पाठकों के लाभ के लिए यहां पहुंचने के लिए, मुझे यह कहने के लिए एक छोटे से विषयांतर की अनुमति दें कि ये चेतावनी आम तौर पर वास्तविक कोड मुद्दों की ओर इशारा करती है (और जब वे नहीं करते हैं, तो आप उन्हें प्रति-चर आधार पर दबा सकते हैं) इसलिए लोगों को शोध करना चाहिए कि वे क्या करते हैं उन्हें अक्षम करने से पहले मतलब है।
बेशक, मुझे कोई संदेह नहीं है कि आप जानते हैं कि आपको इसे अक्षम करने की आवश्यकता क्यों है, इसलिए जवाब नीचे है।
उत्तर
इस (या अन्य) चेतावनी को अक्षम करने के लिए, आपको मान सेट करना होगा byte-compile-warnings
। आप फ़ाइल के अंत में निम्नलिखित स्निपेट जोड़कर फ़ाइल-स्थानीय चर के रूप में कर सकते हैं।
;; Local Variables:
;; byte-compile-warnings: (not free-vars)
;; End:
आप इसे विश्व स्तर पर भी सेट कर सकते हैं।
आप बदल सकते हैं (not free-vars)
के साथ (not free-vars callargs unresolved)
और जो भी अन्य चेतावनी आप को दबाने के लिए चाहते हैं। चेतावनियों को शामिल किया जा सकता है।
byte-compile-warnings is a variable defined in `bytecomp.el'.
Its value is t
This variable is safe as a file local variable if its value
satisfies the predicate which is a byte-compiled expression.
Documentation:
List of warnings that the byte-compiler should issue (t for all).
Elements of the list may be:
free-vars references to variables not in the current lexical scope.
unresolved calls to unknown functions.
callargs function calls with args that don't match the definition.
redefine function name redefined from a macro to ordinary function or vice
versa, or redefined to take a different number of arguments.
obsolete obsolete variables and functions.
noruntime functions that may not be defined at runtime (typically
defined only under `eval-when-compile').
cl-functions calls to runtime functions (as distinguished from macros and
aliases) from the old CL package (not the newer cl-lib).
interactive-only
commands that normally shouldn't be called from Lisp code.
lexical global/dynamic variables lacking a prefix.
make-local calls to make-variable-buffer-local that may be incorrect.
mapcar mapcar called for effect.
constants let-binding of, or assignment to, constants/nonvariables.
suspicious constructs that usually don't do what the coder wanted.
If the list begins with `not', then the remaining elements specify warnings to
suppress. For example, (not mapcar) will suppress warnings about mapcar.