repo.or.cz
/
emacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tweak some message calls in gdb-mi.el
[emacs.git]
/
admin
/
coccinelle
/
xsave.cocci
blob
5172bb55b33d872d1c354f0d77527611b7a204a3
1
// Adjust users of XSAVE_POINTER and XSAVE_INTEGER.
2
@@
3
expression E;
4
@@
5
(
6
- XSAVE_POINTER (E)
7
+ XSAVE_POINTER (E, 0)
8
|
9
- XSAVE_INTEGER (E)
10
+ XSAVE_INTEGER (E, 1)
11
)