Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 1b6e616

Browse files
committed
regen: add emacs modeline to vim ft=c
I'd really like to have C formatting for perly.tab and .act
1 parent f0634d9 commit 1b6e616

37 files changed

+42
-41
lines changed

charclass_invlists.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
33
* This file is built by regen/mk_invlists.pl from Unicode::UCD.
44
* Any changes made here will be lost!

ebcdic_tables.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
33
* This file is built by regen/ebcdic.pl.
44
* Any changes made here will be lost!

embed.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
*
33
* embed.h
44
*

embedvar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
*
33
* embedvar.h
44
*

ext/Config/Config_xs.out

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7187,10 +7187,12 @@ PROTOTYPES: DISABLE
71877187
BOOT:
71887188
{
71897189
STATIC_ASSERT_STMT(sizeof (stringpool_contents) <= 1 << 15);
7190-
#if PTRSIZE == 8
7190+
#ifndef _MSC_VER /* MSVC packing? Fails on my MSVC110FREE WIN64 box */
7191+
# if PTRSIZE == 8
71917192
STATIC_ASSERT_STMT(sizeof (struct Perl_Config) == 16);
7192-
#else
7193+
# else
71937194
STATIC_ASSERT_STMT(sizeof (struct Perl_Config) == 8);
7195+
# endif
71947196
#endif
71957197
#if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321 /* big-endian */
71967198
/* an inline string better be negative on BE */

feature.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
!!!!!!! DO NOT EDIT THIS FILE !!!!!!!
33
This file is built by regen/feature.pl.
44
Any changes made here will be lost!

keywords.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
33
* This file is built by regen/keywords.pl from its data.
44
* Any changes made here will be lost!

keywords.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
*
33
* keywords.h
44
*

l1_char_class_tab.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
/* ex: set ro ft=c: -*- mode: c; buffer-read-only: t -*-
22
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
33
* This file is built by regen/mk_PL_charclass.pl from property
44
* definitions.

lib/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ex: set ro ft=c: -*- buffer-read-only: t -*-
1+
# ex: set ro ft=perl: -*- mode: perl; buffer-read-only: t -*-
22
# !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
33
# This file is built by regen/lib_cleanup.pl from MANIFEST and parsing files
44
# in cpan/ dist/ and ext/.

0 commit comments

Comments
 (0)