aboutsummaryrefslogtreecommitdiffstats
path: root/src/lastfile.c
diff options
context:
space:
mode:
authorPaul Eggert2017-11-02 21:54:23 -0700
committerPaul Eggert2017-11-02 21:56:01 -0700
commit5b4ff53ab4579532b1b9eba233c135fee274d674 (patch)
tree0217d798f3648a8d3e118ab3946533cf87d522f3 /src/lastfile.c
parente9fb9691ac3b2a1f60ba84a3350a3e65a853bbc0 (diff)
downloademacs-5b4ff53ab4579532b1b9eba233c135fee274d674.tar.gz
emacs-5b4ff53ab4579532b1b9eba233c135fee274d674.zip
Simplify by assuming !_MSC_VER.
Emacs has not been portable to MSVC for some time (Bug#29040#57). * admin/CPP-DEFINES (_MSC_VER): Remove. * src/lisp.h (ENUM_BF, DEFUN): * src/regex.c (re_char): Simplify by assuming _MSC_VER is not defined. * src/regex.c (const_re_char): Remove. All uses replaced by re_char.
Diffstat (limited to 'src/lastfile.c')
-rw-r--r--src/lastfile.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lastfile.c b/src/lastfile.c
index 2901f148e17..13022792f25 100644
--- a/src/lastfile.c
+++ b/src/lastfile.c
@@ -49,9 +49,6 @@ char my_edata[] = "End of Emacs initialized data";
49 isn't always a separate section in NT executables). */ 49 isn't always a separate section in NT executables). */
50char my_endbss[1]; 50char my_endbss[1];
51 51
52/* The Alpha MSVC linker globally segregates all static and public bss
53 data, so we must take both into account to determine the true extent
54 of the bss area used by Emacs. */
55static char _my_endbss[1]; 52static char _my_endbss[1];
56char * my_endbss_static = _my_endbss; 53char * my_endbss_static = _my_endbss;
57 54