I usually download Emacs for Windows from the official GNU site:
http://ftp.gnu.org/gnu/emacs/windows/
The latest version is: emacs-24.5-bin-i686-mingw32.zip
I'm curious that why there's no 64-bit?
From the Emacs manual:
http://www.gnu.org/software/emacs/manual/html_mono/efaq-w32.html
2.1 Where can I download Emacs?
Pre-compiled versions are distributed from ftp.gnu.org mirrors. Emacs binaries are distributed as zip files, digitally signed by the developer who built them. Generally most users will want the file
emacs-24.5-bin-i686-pc-mingw.zip
for the 32-bit build, andemacs-24.5-bin-x86_64-w64-mingw32.zip
for the 64-bit build. The zip archive contains everything you need to get started.The latest source is available from ftp.gnu.org mirrors. It is distributed as a compressed tar file, digitally signed by the maintainer who made the release.
The development version of Emacs is available from Savannah, the GNU development site.
Since the manual said there's 64-bit, where is it?
Update
Here is the response from the debugs.gnu.org:
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=20851
Basically,
- The FAQ docs is obsolete.
- 64-bit Emacs on Windows is built by volunteers, and there's no such volunteer currently.
- They've removed the obsolete docs from the Emacs repo. Web pages get updated at next release.
M-x report-emacs-bug
. – Drew Jun 19 '15 at 03:07runemacs.exe
, onlyemacs.exe
, each time I run emacs, it would create a black console windows behind it. And if I close this console window, Emacs would quit. Any way to get rid of this black console? – Nick Jun 19 '15 at 13:39emacs.exe
, norunemacs.exe
as in GNU official port. How do you get rid of the background console? – Nick Jun 19 '15 at 13:51runemacs.exe
as usual, I think I clicked in Files/Release or something on SourceForge. – Dave F Jun 19 '15 at 14:01M-x emacs-version
, mine isGNU Emacs 25.0.50.1 (x86_64-w64-mingw32) of 2015-06-04 on KAEL
– Nick Jun 19 '15 at 14:05GNU Emacs 24.5.1 (x86_64-w64-mingw32) of 2015-05-16 on KAEL
– Dave F Jun 19 '15 at 14:10Release
, foundemacs 24.5.1
. There'srunemacs.exe
as usual. Thank you very much. I also think bind theapps key
(the key between right alt and right ctrl) toM-x
, as the official emacs do, would save a lot of time:(global-set-key (kbd "<apps>") (lookup-key global-map (kbd "M-x")))
– Nick Jun 19 '15 at 14:20