aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorJan D2010-07-02 14:19:53 +0200
committerJan D2010-07-02 14:19:53 +0200
commitf57e2426f0e8a6b251be71b6f62237fd286998ea (patch)
treea8db36e415ea69b4196881b44122454317510f46 /src/keymap.c
parent383e09700c9b3d175c506301d363be4597827db7 (diff)
downloademacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.tar.gz
emacs-f57e2426f0e8a6b251be71b6f62237fd286998ea.zip
Remove __P and P_ from .c and .m files and definition of P_
* lisp.h: * atimer.h: Remove define for P_. * alloc.c: Remove __P and P_ from .c and .m files. * atimer.c: * buffer.c: * callint.c: * category.c: * charset.c: * chartab.c: * cm.c: * coding.c: * composite.c: * data.c: * dired.c: * dispnew.c: * doc.c: * editfns.c: * emacs.c: * eval.c: * fileio.c: * filelock.c: * fns.c: * font.c: * fontset.c: * frame.c: * ftfont.c: * ftxfont.c: * gmalloc.c: * gtkutil.c: * image.c: * indent.c: * intervals.c: * keyboard.c: * keymap.c: * lread.c: * marker.c: * menu.c: * minibuf.c: * print.c: * process.c: * scroll.c: * search.c: * sound.c: * strftime.c: * syntax.c: * sysdep.c: * term.c: * terminal.c: * textprop.c: * unexalpha.c: * w32console.c: * w32fns.c: * w32font.c: * w32menu.c: * w32term.c: * w32uniscribe.c: * window.c: * xdisp.c: * xfaces.c: * xfns.c: * xfont.c: * xftfont.c: * xmenu.c: * xselect.c: * xterm.c: Likewise. * ebrowse.c: Remove P_ and __P. * etags.c: * movemail.c: * pop.c: * update-game-score.c: Likewise.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/keymap.c b/src/keymap.c
index c3a9d9e5cc0..3aeeb1afc05 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -115,20 +115,20 @@ static Lisp_Object where_is_cache;
115/* Which keymaps are reverse-stored in the cache. */ 115/* Which keymaps are reverse-stored in the cache. */
116static Lisp_Object where_is_cache_keymaps; 116static Lisp_Object where_is_cache_keymaps;
117 117
118static Lisp_Object store_in_keymap P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); 118static Lisp_Object store_in_keymap (Lisp_Object, Lisp_Object, Lisp_Object);
119static void fix_submap_inheritance P_ ((Lisp_Object, Lisp_Object, Lisp_Object)); 119static void fix_submap_inheritance (Lisp_Object, Lisp_Object, Lisp_Object);
120 120
121static Lisp_Object define_as_prefix P_ ((Lisp_Object, Lisp_Object)); 121static Lisp_Object define_as_prefix (Lisp_Object, Lisp_Object);
122static void describe_command P_ ((Lisp_Object, Lisp_Object)); 122static void describe_command (Lisp_Object, Lisp_Object);
123static void describe_translation P_ ((Lisp_Object, Lisp_Object)); 123static void describe_translation (Lisp_Object, Lisp_Object);
124static void describe_map P_ ((Lisp_Object, Lisp_Object, 124static void describe_map (Lisp_Object, Lisp_Object,
125 void (*) P_ ((Lisp_Object, Lisp_Object)), 125 void (*) (Lisp_Object, Lisp_Object),
126 int, Lisp_Object, Lisp_Object*, int, int)); 126 int, Lisp_Object, Lisp_Object*, int, int);
127static void describe_vector P_ ((Lisp_Object, Lisp_Object, Lisp_Object, 127static void describe_vector (Lisp_Object, Lisp_Object, Lisp_Object,
128 void (*) (Lisp_Object, Lisp_Object), int, 128 void (*) (Lisp_Object, Lisp_Object), int,
129 Lisp_Object, Lisp_Object, int *, 129 Lisp_Object, Lisp_Object, int *,
130 int, int, int)); 130 int, int, int);
131static void silly_event_symbol_error P_ ((Lisp_Object)); 131static void silly_event_symbol_error (Lisp_Object);
132 132
133/* Keymap object support - constructors and predicates. */ 133/* Keymap object support - constructors and predicates. */
134 134
@@ -2643,8 +2643,8 @@ preferred_sequence_p (seq)
2643 2643
2644/* where-is - finding a command in a set of keymaps. */ 2644/* where-is - finding a command in a set of keymaps. */
2645 2645
2646static void where_is_internal_1 P_ ((Lisp_Object key, Lisp_Object binding, 2646static void where_is_internal_1 (Lisp_Object key, Lisp_Object binding,
2647 Lisp_Object args, void *data)); 2647 Lisp_Object args, void *data);
2648 2648
2649/* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map. 2649/* Like Flookup_key, but uses a list of keymaps SHADOW instead of a single map.
2650 Returns the first non-nil binding found in any of those maps. 2650 Returns the first non-nil binding found in any of those maps.
@@ -3440,7 +3440,7 @@ describe_map (map, prefix, elt_describer, partial, shadow,
3440 seen, nomenu, mention_shadow) 3440 seen, nomenu, mention_shadow)
3441 register Lisp_Object map; 3441 register Lisp_Object map;
3442 Lisp_Object prefix; 3442 Lisp_Object prefix;
3443 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object)); 3443 void (*elt_describer) (Lisp_Object, Lisp_Object);
3444 int partial; 3444 int partial;
3445 Lisp_Object shadow; 3445 Lisp_Object shadow;
3446 Lisp_Object *seen; 3446 Lisp_Object *seen;
@@ -3692,7 +3692,7 @@ describe_vector (vector, prefix, args, elt_describer,
3692 mention_shadow) 3692 mention_shadow)
3693 register Lisp_Object vector; 3693 register Lisp_Object vector;
3694 Lisp_Object prefix, args; 3694 Lisp_Object prefix, args;
3695 void (*elt_describer) P_ ((Lisp_Object, Lisp_Object)); 3695 void (*elt_describer) (Lisp_Object, Lisp_Object);
3696 int partial; 3696 int partial;
3697 Lisp_Object shadow; 3697 Lisp_Object shadow;
3698 Lisp_Object entire_map; 3698 Lisp_Object entire_map;