aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/ebrowse.c
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-07 22:48:57 -0700
committerDan Nicolaescu2010-07-07 22:48:57 -0700
commit0216627eb39f77958e30f4750f581714fdfd7faf (patch)
tree3386df5cfea9d2ce20f2dbb6152b24a2c0ea5bfd /lib-src/ebrowse.c
parentd8825aa36e51836d75112ebddc93beca9f31185a (diff)
downloademacs-0216627eb39f77958e30f4750f581714fdfd7faf.tar.gz
emacs-0216627eb39f77958e30f4750f581714fdfd7faf.zip
Remove leftover P_ macros.
* lib-src/update-game-score.c (P_): Remove macro. * lib-src/ebrowse.c: Remove include guards. (P_): Remove macro.
Diffstat (limited to 'lib-src/ebrowse.c')
-rw-r--r--lib-src/ebrowse.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c
index 42bcdfd06f3..a9f7ba4f3a7 100644
--- a/lib-src/ebrowse.c
+++ b/lib-src/ebrowse.c
@@ -20,20 +20,14 @@ You should have received a copy of the GNU General Public License
20along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 20along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 21
22 22
23#ifdef HAVE_CONFIG_H
24#include <config.h> 23#include <config.h>
25#endif
26
27#include <stdio.h> 24#include <stdio.h>
28 25
29#ifdef HAVE_STDLIB_H 26#ifdef HAVE_STDLIB_H
30#include <stdlib.h> 27#include <stdlib.h>
31#endif 28#endif
32 29
33#ifdef HAVE_STRING_H
34#include <string.h> 30#include <string.h>
35#endif
36
37#include <ctype.h> 31#include <ctype.h>
38#include <assert.h> 32#include <assert.h>
39#include "getopt.h" 33#include "getopt.h"
@@ -45,12 +39,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
45 39
46/* Conditionalize function prototypes. */ 40/* Conditionalize function prototypes. */
47 41
48#ifdef PROTOTYPES /* From config.h. */
49#define P_(x) x
50#else
51#define P_(x) ()
52#endif
53
54/* Value is non-zero if strings X and Y compare equal. */ 42/* Value is non-zero if strings X and Y compare equal. */
55 43
56#define streq(X, Y) (*(X) == *(Y) && strcmp ((X) + 1, (Y) + 1) == 0) 44#define streq(X, Y) (*(X) == *(Y) && strcmp ((X) + 1, (Y) + 1) == 0)