Skip to content

Commit 1163701

Browse files
committed
Rename method_list.h to method.h
Work around the fact that LaTeX really doesn't like file names with underscores...
1 parent c0f56a7 commit 1163701

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

class_table.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "objc/developer.h"
44
#include "alias.h"
55
#include "class.h"
6-
#include "method_list.h"
6+
#include "method.h"
77
#include "selector.h"
88
#include "lock.h"
99
#include "dtable.h"

dtable.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "selector.h"
1010
#include "class.h"
1111
#include "lock.h"
12-
#include "method_list.h"
12+
#include "method.h"
1313
#include "dtable.h"
1414
#include "visibility.h"
1515
#include "asmconstants.h"

encoding2.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "objc/runtime.h"
77
#include "objc/encoding.h"
8-
#include "method_list.h"
8+
#include "method.h"
99
#include "visibility.h"
1010

1111
size_t objc_alignof_type (const char *type);

loader.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef __OBJC_LOADER_H_INCLUDED
22
#define __OBJC_LOADER_H_INCLUDED
33
#include "category.h"
4-
#include "method_list.h"
4+
#include "method.h"
55
#include "module.h"
66
#include "class.h"
77
#include "protocol.h"

method_list.h method.h

File renamed without changes.

runtime.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "class.h"
44
#include "protocol.h"
55
#include "ivar.h"
6-
#include "method_list.h"
6+
#include "method.h"
77
#include "lock.h"
88
#include "dtable.h"
99
#include "gc_ops.h"

selector_table.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <ctype.h>
1111
#include "lock.h"
1212
#include "objc/runtime.h"
13-
#include "method_list.h"
13+
#include "method.h"
1414
#include "class.h"
1515
#include "selector.h"
1616
#include "visibility.h"

0 commit comments

Comments
 (0)