diff options
| author | Juanma Barranquero | 2011-09-09 03:06:52 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-09-09 03:06:52 +0200 |
| commit | 5e617bc2b62189768814fafd1a875e89a094d3ef (patch) | |
| tree | d96d22e012035d044557abf4de0b8e30b03d61b7 /lib-src/ebrowse.c | |
| parent | 9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff) | |
| download | emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.zip | |
Whitespace changes.
Diffstat (limited to 'lib-src/ebrowse.c')
| -rw-r--r-- | lib-src/ebrowse.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index a997e56cc9f..7395f2c8fdd 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c | |||
| @@ -45,16 +45,16 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 45 | 45 | ||
| 46 | /* The character used as a separator in path lists (like $PATH). */ | 46 | /* The character used as a separator in path lists (like $PATH). */ |
| 47 | 47 | ||
| 48 | #if defined(__MSDOS__) | 48 | #if defined (__MSDOS__) |
| 49 | #define PATH_LIST_SEPARATOR ';' | 49 | #define PATH_LIST_SEPARATOR ';' |
| 50 | #define FILENAME_EQ(X,Y) (strcasecmp(X,Y) == 0) | 50 | #define FILENAME_EQ(X,Y) (strcasecmp (X,Y) == 0) |
| 51 | #else | 51 | #else |
| 52 | #if defined(WINDOWSNT) | 52 | #if defined (WINDOWSNT) |
| 53 | #define PATH_LIST_SEPARATOR ';' | 53 | #define PATH_LIST_SEPARATOR ';' |
| 54 | #define FILENAME_EQ(X,Y) (stricmp(X,Y) == 0) | 54 | #define FILENAME_EQ(X,Y) (stricmp (X,Y) == 0) |
| 55 | #else | 55 | #else |
| 56 | #define PATH_LIST_SEPARATOR ':' | 56 | #define PATH_LIST_SEPARATOR ':' |
| 57 | #define FILENAME_EQ(X,Y) (streq(X,Y)) | 57 | #define FILENAME_EQ(X,Y) (streq (X,Y)) |
| 58 | #endif | 58 | #endif |
| 59 | #endif | 59 | #endif |
| 60 | /* The default output file name. */ | 60 | /* The default output file name. */ |
| @@ -2511,7 +2511,7 @@ member (struct sym *cls, int vis) | |||
| 2511 | 2511 | ||
| 2512 | /* A function or class may follow. */ | 2512 | /* A function or class may follow. */ |
| 2513 | case TEMPLATE: | 2513 | case TEMPLATE: |
| 2514 | MATCH(); | 2514 | MATCH (); |
| 2515 | SET_FLAG (flags, F_TEMPLATE); | 2515 | SET_FLAG (flags, F_TEMPLATE); |
| 2516 | /* Skip over template argument list */ | 2516 | /* Skip over template argument list */ |
| 2517 | SKIP_MATCHING_IF ('<'); | 2517 | SKIP_MATCHING_IF ('<'); |
| @@ -2930,7 +2930,7 @@ parse_qualified_ident_or_type (char **last_id) | |||
| 2930 | } | 2930 | } |
| 2931 | 2931 | ||
| 2932 | while (enter--) | 2932 | while (enter--) |
| 2933 | leave_namespace(); | 2933 | leave_namespace (); |
| 2934 | 2934 | ||
| 2935 | return cls; | 2935 | return cls; |
| 2936 | } | 2936 | } |