Tony Mechelynck wrote: > After pulling the changesets for patchlevels 7.4.296 to 7.4.305 and > updating to the new head of the "default" repository branch, the > following errors happen in the Tiny build only (Huge build compiles and > links fine): > > gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -fno-strength-reduce -Wall > -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/term.o term.c > term.c: In function ‘did_request_esc_sequence’: > term.c:3325:9: error: ‘crv_status’ undeclared (first use in this function) > if (crv_status == CRV_GET) > ^ > term.c:3325:9: note: each undeclared identifier is reported only once > for each function it appears in > term.c:3325:23: error: ‘CRV_GET’ undeclared (first use in this function) > if (crv_status == CRV_GET) > ^ > term.c:3327:9: error: ‘u7_status’ undeclared (first use in this function) > if (u7_status == U7_GET) > ^ > term.c:3327:22: error: ‘U7_GET’ undeclared (first use in this function) > if (u7_status == U7_GET) > ^ > term.c:3329:26: error: ‘CRV_SENT’ undeclared (first use in this function) > return crv_status == CRV_SENT || u7_status == U7_SENT > ^ > term.c:3329:51: error: ‘U7_SENT’ undeclared (first use in this function) > return crv_status == CRV_SENT || u7_status == U7_SENT > ^ > term.c:3334:1: warning: control reaches end of non-void function > [-Wreturn-type] > } > ^ > make: *** [objects/term.o] Error 1 > exit status 2 > > > "exit status" at the end is $? as seen in the shell when "make" exits.
My tests also caught this, but they take a long time to run... I'll make a patch. -- % cat /usr/include/sys/errno.h #define EPERM 1 /* Operation not permitted */ #define ENOENT 2 /* No such file or directory */ #define ESRCH 3 /* No such process */ [...] #define EMACS 666 /* Too many macros */ % /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
