From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Philipp Stephani
Hello, Emacs!
In some Elisp with no knowledge of the variable `some-flag', which will=
be defined elsewhere, I want to write
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (let (some-flag) ....)
to bind `some-flag' dynamically.=C2=A0 The byte-compiler give me the wa= rning:
=C2=A0 =C2=A0 Unused lexical variable `some-flag'
.=C2=A0 Somehow, I need to tell the byte-compiler that `some-flag' will= be an
external dynamic variable.=C2=A0 How do I do this?
I've had a look around the "Variables" page, and its sub-page= s, in the
elisp manual, yet didn't find any instructions on how to get round this=
problem.=C2=A0 Where in the manual is it described?