summaryrefslogtreecommitdiff
path: root/src/lastfile.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-11-02 21:54:23 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2017-11-02 21:56:01 -0700
commit5b4ff53ab4579532b1b9eba233c135fee274d674 (patch)
tree0217d798f3648a8d3e118ab3946533cf87d522f3 /src/lastfile.c
parente9fb9691ac3b2a1f60ba84a3350a3e65a853bbc0 (diff)
downloademacs-5b4ff53ab4579532b1b9eba233c135fee274d674.tar.gz
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";
isn't always a separate section in NT executables). */
char my_endbss[1];
-/* The Alpha MSVC linker globally segregates all static and public bss
- data, so we must take both into account to determine the true extent
- of the bss area used by Emacs. */
static char _my_endbss[1];
char * my_endbss_static = _my_endbss;