mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-31 01:20:37 -08:00
from any Lisp_Save_Value slot. Add type checking. * src/alloc.c, src/dired.c, src/editfns.c, src/fileio.c, src/ftfont.c: * src/gtkutil.c, src/keymap.c, src/lread.c, src/nsterm.h, src/nsmenu.c: * src/xfns.c, src/xmenu.c, src/xselect.c: All users changed. * admin/coccinelle/xsave.cocci: Semantic patch to adjust users of XSAVE_POINTER and XSAVE_INTEGER macros.
11 lines
164 B
Text
11 lines
164 B
Text
// Adjust users of XSAVE_POINTER and XSAVE_INTEGER.
|
|
@@
|
|
expression E;
|
|
@@
|
|
(
|
|
- XSAVE_POINTER (E)
|
|
+ XSAVE_POINTER (E, 0)
|
|
|
|
|
- XSAVE_INTEGER (E)
|
|
+ XSAVE_INTEGER (E, 1)
|
|
)
|