[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Midnight Commander Quick View
From: |
Stefan Monnier |
Subject: |
Re: Midnight Commander Quick View |
Date: |
Mon, 25 Aug 2014 10:38:42 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) |
> (setq lexical-binding t)
Don't do that. This will set lexical-binding during *execution*,
whereas that option is needed during compilation.
Furthermore, it will set it such that it will affect everything rather
than only code in this file.
Stefan