Skip to content

Commit 5d7520f

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 04561d6 + 3f7d090 commit 5d7520f

File tree

17 files changed

+219
-244
lines changed

17 files changed

+219
-244
lines changed

Filelist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ SRC_UNIX = \
207207
src/config.mk.dist \
208208
src/config.mk.in \
209209
src/configure \
210-
src/configure.in \
210+
src/configure.ac \
211211
src/gui_at_fs.c \
212212
src/gui_at_sb.c \
213213
src/gui_at_sb.h \

src/INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ diffs or instructions to the address given in the `README' so they can
221221
be considered for the next release. If at some point `config.cache'
222222
contains results you don't want to keep, you may remove or edit it.
223223

224-
The file `configure.in' is used to create `configure' by a program
225-
called `autoconf'. You only need `configure.in' if you want to change
224+
The file `configure.ac' is used to create `configure' by a program
225+
called `autoconf'. You only need `configure.ac' if you want to change
226226
it or regenerate `configure' using a newer version of `autoconf'.
227227

228228
The simplest way to compile this package is:

src/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -690,8 +690,8 @@ SANITIZER_LIBS = $(SANITIZER_CFLAGS)
690690
#####################################################
691691

692692
### Uncomment things here only if the values chosen by configure are wrong.
693-
### It's better to adjust configure.in and "make autoconf", if you can!
694-
### Then send the required changes to configure.in to the bugs list.
693+
### It's better to adjust configure.ac and "make autoconf", if you can!
694+
### Then send the required changes to configure.ac to the bugs list.
695695

696696
### (1) BSD/OS 2.0.1, 2.1 or 3.0 using shared libraries
697697
###
@@ -1849,7 +1849,7 @@ reconfig: scratch clean
18491849
# - DO NOT RUN autoconf MANUALLY! It will overwrite ./configure instead of
18501850
# producing auto/configure.
18511851
# - autoconf is not run automatically, because a patch usually changes both
1852-
# configure.in and auto/configure but can't update the timestamps. People
1852+
# configure.ac and auto/configure but can't update the timestamps. People
18531853
# who do not have (the correct version of) autoconf would run into trouble.
18541854
#
18551855
# Two tricks are required to make autoconf put its output in the "auto" dir:

src/blowfish.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ typedef union {
3838
/* MS-Windows is always little endian */
3939
#else
4040
# ifdef HAVE_CONFIG_H
41-
/* in configure.in AC_C_BIGENDIAN() defines WORDS_BIGENDIAN when needed */
41+
/* in configure.ac AC_C_BIGENDIAN() defines WORDS_BIGENDIAN when needed */
4242
# else
4343
error!
4444
Please change this code to define WORDS_BIGENDIAN for big-endian machines.

src/channel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# define CH_HAS_GUI (gui.in_use || gui.starting)
2020
#endif
2121

22-
/* Note: when making changes here also adjust configure.in. */
22+
/* Note: when making changes here also adjust configure.ac. */
2323
#ifdef WIN32
2424
/* WinSock API is separated from C API, thus we can't use read(), write(),
2525
* errno... */

src/config.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* config.h.in. Generated automatically from configure.in by autoheader, and
3-
* manually changed after that.
2+
* config.h.in. Originally generated automatically from configure.ac by
3+
* autoheader and manually changed after that.
44
*/
55

66
/* Define if we have EBCDIC code */

src/configure.in renamed to src/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dnl configure.in: autoconf script for Vim
1+
dnl configure.ac: autoconf script for Vim
22

33
dnl Process this file with autoconf 2.12 or 2.13 to produce "configure".
44
dnl Should also work with autoconf 2.54 and later.

src/ex_cmds.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,10 @@ EX(CMD_cquit, "cquit", ex_cquit,
391391
EX(CMD_crewind, "crewind", ex_cc,
392392
RANGE|NOTADR|COUNT|TRLBAR|BANG,
393393
ADDR_LINES),
394-
EX(CMD_cscope, "cscope", do_cscope,
394+
EX(CMD_cscope, "cscope", ex_cscope,
395395
EXTRA|NOTRLCOM|XFILE,
396396
ADDR_LINES),
397-
EX(CMD_cstag, "cstag", do_cstag,
397+
EX(CMD_cstag, "cstag", ex_cstag,
398398
BANG|TRLBAR|WORD1,
399399
ADDR_LINES),
400400
EX(CMD_cunmap, "cunmap", ex_unmap,
@@ -745,7 +745,7 @@ EX(CMD_lchdir, "lchdir", ex_cd,
745745
EX(CMD_lclose, "lclose", ex_cclose,
746746
RANGE|NOTADR|COUNT|TRLBAR,
747747
ADDR_LINES),
748-
EX(CMD_lcscope, "lcscope", do_cscope,
748+
EX(CMD_lcscope, "lcscope", ex_cscope,
749749
EXTRA|NOTRLCOM|XFILE,
750750
ADDR_LINES),
751751
EX(CMD_ldo, "ldo", ex_listdo,
@@ -1255,7 +1255,7 @@ EX(CMD_scriptnames, "scriptnames", ex_scriptnames,
12551255
EX(CMD_scriptencoding, "scriptencoding", ex_scriptencoding,
12561256
WORD1|TRLBAR|CMDWIN,
12571257
ADDR_LINES),
1258-
EX(CMD_scscope, "scscope", do_scscope,
1258+
EX(CMD_scscope, "scscope", ex_scscope,
12591259
EXTRA|NOTRLCOM,
12601260
ADDR_LINES),
12611261
EX(CMD_set, "set", ex_set,

src/ex_docmd.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,9 @@ static void ex_popup(exarg_T *eap);
245245
# define ex_helpfind ex_ni
246246
#endif
247247
#ifndef FEAT_CSCOPE
248-
# define do_cscope ex_ni
249-
# define do_scscope ex_ni
250-
# define do_cstag ex_ni
248+
# define ex_cscope ex_ni
249+
# define ex_scscope ex_ni
250+
# define ex_cstag ex_ni
251251
#endif
252252
#ifndef FEAT_SYN_HL
253253
# define ex_syntax ex_ni
@@ -10454,7 +10454,7 @@ ex_tag_cmd(exarg_T *eap, char_u *name)
1045410454
#ifdef FEAT_CSCOPE
1045510455
if (p_cst && *eap->arg != NUL)
1045610456
{
10457-
do_cstag(eap);
10457+
ex_cstag(eap);
1045810458
return;
1045910459
}
1046010460
#endif

0 commit comments

Comments
 (0)