summaryrefslogtreecommitdiff
path: root/nt
Commit message (Expand)AuthorAgeFilesLines
...
* Merge from gnulib...This incorporates: 2015-05-27 qacl: Reimplement qset_acl and qcopy_acl (Bug#20666) 2015-05-27 file-has-acl: Split feature tests again (Bug#20667) 2015-05-27 string: fix build failure on BSD/OSX with FORTIFY_SOURCE 2015-05-26 stdio: limit __gnu_printf__ witness to gcc 4.4+ 2015-05-26 inttypes: force correct mingw PRIdMAX even without <stdio.h> 2015-05-26 stdio: fix probe on mingw under gcc 5.1 * admin/merge-gnulib (GNULIB_MODULES): Replace qacl with qcopy-acl, since we don't need the rest of qacl. * doc/misc/texinfo.tex, lib/acl-internal.c, lib/acl-internal.h: * lib/inttypes.in.h, lib/qcopy-acl.c, lib/qset-acl.c: * lib/string.in.h, m4/acl.m4, m4/stdio_h.m4: Get latest versions from gnulib. * lib/get-permissions.c, lib/set-permissions.c: New files. * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate. * nt/gnulib.mk: Merge lib/gnulib.mk changes by hand. Paul Eggert2015-05-271-8/+15
* MS-Windows followup for the recent gnulib update...* nt/gnulib.mk (libgnu_a_SOURCES): Replace file-has-acl.c with acl-internal.c. Eli Zaretskii2015-04-251-1/+1
* Rename ChangeLogs for gitlog-to-changelog...This patch was implemented via the following shell commands: find * -name ChangeLog | sed 's,.*,git mv & &.1, s, lisp/ChangeLog\.1$, lisp/ChangeLog.17, s, lisp/erc/ChangeLog\.1$, lisp/erc/ChangeLog.09, s, lisp/gnus/ChangeLog\.1$, lisp/gnus/ChangeLog.3, s, lisp/mh-e/ChangeLog\.1$, lisp/mh-e/ChangeLog.2, s, src/ChangeLog\.1$, src/ChangeLog.13,' | sh git commit -am"[this commit message]" Paul Eggert2015-04-071-0/+0
* Fix the bug number of previous commit: should be bug #20159.Eli Zaretskii2015-03-271-1/+1
* Support non-blocking connect on MS-Windows (Bug#20207)... Based on ideas from Kim F. Storm <storm@cua.dk>, see http://lists.gnu.org/archive/html/emacs-devel/2006-12/msg00873.html. src/w32proc.c (reader_thread): If the FILE_CONNECT flag is set, call '_sys_wait_connect'. If it returns STATUS_CONNECT_FAILED, exit the thread with code 2. (sys_select): Support 'wfds' in addition to 'rfds'. If a descriptor in 'wfds' has its bit set, but the corresponding fd_info member doesn't have its FILE_CONNECT flag set, ignore the descriptor. Otherwise, acknowledge a successful non-blocking connect by resetting the FILE_CONNECT flag and setting cp->status to STATUS_READ_ACKNOWLEDGED. src/w32.h (STATUS_CONNECT_FAILED): New enumeration value. (struct _child_process): New member 'errcode'. (FILE_CONNECT): New flag. (_sys_wait_connect): Add prototype. src/w32.c (pfn_WSAEnumNetworkEvents): New function pointer. (init_winsock): Load WSAEnumNetworkEvents from winsock DLL. (set_errno): Map WSAEWOULDBLOCK and WSAENOTCONN. (sys_connect): Support non-blocking 'connect' calls by setting the FILE_CONNECT flag in the fd_info member and returning EINPROGRESS. (_sys_read_ahead): Add debug message if this function is called for a descriptor that waits for a non-blocking connect to complete. (_sys_wait_connect): New function. (sys_read): Support STATUS_CONNECT_FAILED. Return the error code recorded by _sys_wait_connect when the non-blocking connect failed. Don't call WSAGetLastError before a call to set_errno had a chance to use its value, since WSAGetLastError clears the last error. nt/inc/ms-w32.h (BROKEN_NON_BLOCKING_CONNECT): Don't define. Eli Zaretskii2015-03-272-4/+5
* nt/ChangeLog: Fix typos.Eli Zaretskii2015-03-091-7/+0
* Fix ChangeLog typosPaul Eggert2015-03-081-1/+0
* Merge from origin/emacs-24...344c6ad Improve MS-Windows build instructions (Bug#19989) eb62887 lisp/dired.el (dired-delete-file): Doc fix. (Bug#20021) Conflicts: lisp/ChangeLog nt/ChangeLog Paul Eggert2015-03-082-1/+34
|\
| * Improve MS-Windows build instructions (Bug#19989)... nt/INSTALL: Add some more installation instructions for mingw-get users. Eli Zaretskii2015-03-072-1/+27
* | Merge from origin/emacs-24...f160106 Avoid assertion violations in Rmail due to newline cache 1b0ebbd browse-url-firefox: update for firefox 36's removal of -remote 1817892 Avoid erratic behavior of menu-bar tooltips on w32 (Bug#19925) 0260932 Bump python.el version b0adfc7 Spelling fixes 35f047c * src/fileio.c (Fmake_temp_name): Doc tweaks. 6f2971a * lisp/comint.el (comint-line-beginning-position): Revert searching 65d8ac7 Mention in admin/notes/repo how to mark commits not to be merged. 86fe750 # Remove NEWS temporary markup 4fa778b erc.el: Add old version header for package.el compatibilty 9366f05 Tramp: Disable paging with PAGER=cat Conflicts: admin/notes/repo etc/NEWS lisp/ChangeLog lisp/erc/ChangeLog src/ChangeLog Paul Eggert2015-03-031-1/+1
|\|
| * Spelling fixesPaul Eggert2015-02-211-1/+1
| * Backport fix for bug#18745 from master.... nt/cmdproxy.c (batch_file_p): New function. (spawn): If calling a quoted batch file pass NULL for progname. Noam Postavsky2015-02-102-0/+35
* | Merge from origin/emacs-24...4b0b27d Fix invocation of commands whose file name includes extension 87fc99f Better support for the case of typing RET on the prompt in comint. a7b1c2f Don't lose frame's background color when setting foreground 20c817d Fix handling of frame color parameters in TTY sessions eca7da1 Complete the remaining documentation updates for 24.5 Conflicts: doc/lispref/ChangeLog etc/NEWS lisp/ChangeLog nt/ChangeLog src/ChangeLog Paul Eggert2015-03-032-6/+76
|\|
| * Fix invocation of commands whose file name includes extension (Bug#19817)... nt/cmdproxy.c (get_next_token): Don't make backslashes disappear without a trace when they are not followed by a quote. (search_dir): Support searching programs whose file name already has an arbitrary extension. (main): When passing a command line to the shell, use cmd.exe rules for quoting command-line tail. Eli Zaretskii2015-02-102-6/+75
| * Bump version to 24.4.90Nicolas Petton2015-02-044-10/+10
| * Fix copyright years by hand...These are dates that admin/update-copyright did not update, or updated incorrectly. Paul Eggert2015-01-015-6/+6
| * Update copyright year to 2015...Run admin/update-copyright. Paul Eggert2015-01-0132-32/+32
* | Support daemon mode on MS-Windows (bug#19688)... src/emacs.c <w32_daemon_event> [WINDOWSNT]: New global var. (main) [WINDOWSNT]: Initialize it to NULL. Create the event to signal clients we are ready for connections. (Fdaemon_initialized): Use DAEMON_RUNNING. [WINDOWSNT]: MS-Windows specific code to signal clients we are ready for connections. src/lisp.h (DAEMON_RUNNING): New macro, encapsulates Posix and MS-Windows conditions for running in daemon mode. src/minibuf.c (read_minibuf): Use DAEMON_RUNNING. src/keyboard.c (kbd_buffer_get_event): Use DAEMON_RUNNING. src/dispnew.c (init_display) [WINDOWSNT]: Initialize frames/terminal even in daemon mode. nt/inc/ms-w32.h (W32_DAEMON_EVENT): New macro. lib-src/emacsclient.c (decode_options) [WINDOWSNT]: Don't reject empty arguments for --alternate-editor. (print_help_and_exit) [WINDOWSNT]: Don't refrain from advertising empty arguments for --alternate-editor. (start_daemon_and_retry_set_socket) [WINDOWSNT]: MS-Windows specific code to start Emacs in daemon mode and wait for it to be ready for client connections. lisp/server.el (server-process-filter): Force GUI frames on MS-Windows in daemon mode, even if a TTY frame was requested. lisp/frameset.el (frameset-keep-original-display-p): Don't assume windows-nt cannot be in daemon mode. lisp/frame.el (window-system-for-display): Don't assume windows-nt cannot be in daemon mode. Mark Laws2015-02-272-0/+7
* | Support Make verbosity levels in w32 targets previously left out... nt/Makefile.in (AM_V_CC, am__v_CC_, am__v_CC_0, am__v_CC_1) (AM_V_CCLD, am__v_CCLD_, am__v_CCLD_0, am__v_CCLD_1, AM_V_RC) (am__v_RC_, am__v_RC_0, am__v_RC_1): New macros. (addpm${EXEEXT}, ddeclient${EXEEXT}, cmdproxy${EXEEXT}) (runemacs${EXEEXT}): Use $(AM_V_CCLD). (emacs.res, ../src/emacs.res): Use $(AM_V_RC). lib-src/Makefile.in (AM_V_RC, am__v_RC_, am__v_RC_0, am__v_RC_1): New macros. (emacsclient.res): Use $(AM_V_RC). Eli Zaretskii2015-01-162-5/+32
* | Fix copyright years by hand...These are dates that admin/update-copyright did not update, or updated incorrectly. Also, back out the copyright-date change to doc/misc/texinfo.tex, as upstream hasn't updated that date yet. Paul Eggert2015-01-015-6/+6
* | Update copyright year to 2015...Run admin/update-copyright. Paul Eggert2015-01-0131-31/+31
* | Merge from origin/emacs-24...a5f90a3 * .gitattributes: New file. 5a9710f Make sure tool-bar changes are reflected on display. 93796ba * autogen.sh: Port better to non-GNU 'cp'. 9758516 Fix a typo in a comment in the previous commit. aa472a3 Fix the pixel coordinates returned by pos-visible-in-window-p. (Bug#19473) d261229 * automated/tramp-tests.el (tramp--test-smb-or-windows-nt-p): New defun. (tramp-test30-special-characters): Use it. (tramp--test-check-files): Filter nil file names out. 9278f05 Omit trailing white space 1c93fd3 Sync with Tramp 2.2.11. 96ebe18 Sync with Tramp 2.2.11. e792450 Sync with Tramp 2.2.11. 2d17e12 Fix ChangeLog entry. 6444482 Fix auto-revert-tail-mode for remote files b5c9c13 Spelling fixes c5504d1 src/w32proc.c (Fw32_get_codepage_charset): Doc fix. (Bug#19458) Conflicts: ChangeLog doc/misc/ChangeLog lisp/ChangeLog src/ChangeLog test/ChangeLog Paul Eggert2015-01-011-1/+1
|\|
| * Spelling fixesPaul Eggert2014-12-281-1/+1
* | MS-Windows followup to stpcpy changes.... src/w32proc.c (sys_spawnve, get_lcid_callback): Use strcpy instead of strcat. src/w32menu.c (add_menu_item): Use stpcpy instead of strcat. src/w32.c (sys_readdir, stat_worker, symlink): Use strcpy instead of strcat. nt/gnulib.mk (stpcpy, string): Sync with the latest change in lib/gnulib.mk. Eli Zaretskii2014-12-262-1/+115
* | gnulib.mk (stddef.h): Sync with the latest change in lib/gnulib.mk.Eli Zaretskii2014-12-132-0/+5
* | Fix up merged ChangeLog entries (dates, duplication, etc)Glenn Morris2014-11-291-7/+2
* | Merge branch 'emacs-24'.Paul Eggert2014-11-282-7/+2
|\|
| * Fix white-space problems in ChangeLogs.Paul Eggert2014-11-241-2/+2
| * .gitignore cleanup....* .gitignore: Merge contents of subsidiary files and organize the result so as to avoid duplication. Remove no-longer needed entries. * admin/charsets/.gitignore, admin/unidata/.gitignore: * doc/lispintro/.gitignore, etc/.gitignore, leim/.gitignore: * leim/ja-dic/.gitignore, lib-src/.gitignore, lisp/.gitignore: * lisp/calc/.gitignore, lisp/calendar/.gitignore: * lisp/cedet/.gitignore, lisp/emulation/.gitignore: * lisp/erc/.gitignore, lisp/eshell/.gitignore, lisp/gnus/.gitignore: * lisp/international/.gitignore, lisp/language/.gitignore: * lisp/leim/.gitignore, lisp/leim/quail/.gitignore: * lisp/mail/.gitignore, lisp/mh-e/.gitignore, lisp/net/.gitignore: * lisp/nxml/.gitignore, lisp/obsolete/.gitignore: * lisp/play/.gitignore, lisp/progmodes/.gitignore: * lisp/term/.gitignore, lisp/textmodes/.gitignore: * lisp/url/.gitignore, nt/.gitignore, src/.gitignore: Remove; no longer needed. Paul Eggert2014-11-171-5/+0
* | Merge branch 'emacs-24'...Conflicts: nt/addsection.c nt/inc/ms-w32.h src/w32.c Ted Zlatanov2014-11-264-8/+26
|\|
| * Define MINGW_W64 and use it instead of _W64...... for detecting MinGW-w64. _W64 is not specific of MinGW-w64, it is defined for compatibility with MS VC++. * nt/inc/ms-w32.h: Define MINGW_W64. * admin/CPP-DEFINES: Mention MINGW_W64. * nt/addpm.c: Use it. * nt/addsection.c: Use it. * nt/preprep.c: Use it. * src/w32.c: Use MINGW_W64 instead of _W64 * src/w32term.c: Likewise. Oscar Fuentes2014-11-175-8/+27
| * Backport changes in preparation for git migration from trunk.... admin: Changes in several documents. autogen.sh: Neutralize language specific to a repository type. doc/misc/efaq-w32.texi: Neutralized language specific to a repository type. doc/misc/gnus-coding.txt: Neutralized language specific to a repository type. lisp/Makefile.in: Change some production names so they're neutral about the repository type. Eric S. Raymond2014-10-314-4/+8
| * * README.W32 (Preliminaries): Don't assume that this file is at...the top level. (Setting up Emacs): Minor rewording to be more accurate. Backported from trunk. Dani Moncayo2014-10-262-4/+13
| * * configure.ac: Bump version to 24.4.51 to avoid ambiguity with the old...trunk's 24.4.50. Stefan Monnier2014-10-222-2/+2
| * Bump Emacs version to 24.4.50.Eli Zaretskii2014-10-214-10/+10
* | Reduce nt and src Makefile duplication wrt emacs.res...* nt/Makefile.in (../src/emacs.res): New target. * src/Makefile.in (emacs.res): Use ../nt rule, rather than duplicating it. (ntsource, WINDRES, EMACS_MANIFEST): Remove, now unused. Glenn Morris2014-11-232-2/+6
* | * nt/emacs.rc, nt/emacsclient.rc: Remove files....Accidentally left out of previous commit. Apparently "git mv" doesn't do what I thought it did... Glenn Morris2014-11-222-84/+0
* | Further reduce number of versioned files storing Emacs version number....* configure.ac (comma_version, comma_space_version) [mingw32]: New output variables. (nt/emacs.rc, nt/emacsclient.rc) [mingw32]: New output files. * make-dist: Update nt/ for *.rc -> *.rc.in changes. * nt/emacs.rc.in, nt/emacsclient.rc.in: Rename from nt/emacs.rc, emacsclient.rc. Let configure generate the real files, and set the version numbers. * lib-src/Makefile.in (emacsclient.res): Update deps for nt/emacsclient.rc now being in the build directory, not the source directory. * nt/Makefile.in (distclean): Delete *.rc. (emacs.res): Update deps for nt/emacsclient.rc now being in the build directory, not the source directory. * admin/admin.el (set-version): No more need to update nt/*.rc. * admin/authors.el (authors-renamed-files-alist): Add .rc.in files. Glenn Morris2014-11-224-3/+93
* | Add some .ico dependencies to Makefile .res rules...* lib-src/Makefile.in (emacsclient.res): Add dependency on icons/emacs.ico. * nt/Makefile.in (emacs.res): Add dependency on icons/hand.cur. Glenn Morris2014-11-222-1/+6
* | Use automatic variables in nt/Makefile.in...* nt/Makefile.in (addpm${EXEEXT}, ddeclient${EXEEXT}) (cmdproxy${EXEEXT}, runemacs${EXEEXT}, emacs.res): Use automatic variables. Glenn Morris2014-11-172-6/+11
* | * README.W32 (Preliminaries): Don't assume that this file is at...the top level. (Setting up Emacs): Minor rewording to be more accurate. Dani Moncayo2014-10-262-4/+13
* | Next binary distribution will not contain .bzrignore files....Removing this now to unclitter the grwp listings when I hunt for obsolete references to bzr. Eric S. Raymond2014-10-251-1/+1
* | Neutralize language specific to a repository type.Eric S. Raymond2014-10-253-3/+7
* | Fix bug #18745 with invoking Windows batch files with embedded whitespace.... src/w32proc.c (create_child): If calling a quoted batch file, pass NULL for exe. nt/cmdproxy.c (batch_file_p): New function. (spawn): If calling a quoted batch file pass NULL for progname. test/automated/process-tests.el (process-test-quoted-batfile): New test. Noam Postavsky2014-10-252-0/+35
* | Merge from emacs-24; up to 2014-07-28T06:28:15Z!dmantipov@yandex.ruGlenn Morris2014-10-201-0/+4
|\|
| * Add 24.4 release ChangeLog entriesGlenn Morris2014-10-201-0/+4
| * Bump version to 24.4...Regenerate ldefs-boot and AUTHORS Glenn Morris2014-10-164-10/+10
* | Merge from emacs-24; up to 2014-07-22T06:37:31Z!yamaoka@jpl.orgGlenn Morris2014-10-081-1/+1
|\|
| * Doc tweaks...* doc/lispref/frames.texi (Multiple Terminals): Copyedits. * lisp/frame.el (display-monitor-attributes-list): Doc tweaks. * nt/README.W32, src/ChangeLog.10, src/w32term.c: Standardize on "taskbar" rather than "task bar", since that is what most references seem to use; e.g. http://en.wikipedia.org/wiki/Taskbar http://windows.microsoft.com/en-us/windows7/products/features/windows-taskbar Glenn Morris2014-10-081-1/+1
| * Bump version to 24.3.94; regenerate ldefs-boot and AUTHORSGlenn Morris2014-10-014-10/+10