Bind inhibit-modification-hooks rather than a/b-c-f
[emacs.git] / test / etags / cp-src / x.cc
bloba236060281aa0d6cc4d145fdcb8d1b50c147f2d2
1 class XX
3 public:
4 int foo();
5 void bar();
6 };
8 int
9 XX::foo()
11 return 1;
14 void
15 XX::bar()
17 foo();
20 int
21 main(int argc, char *argv[])
23 XX xx;
24 xx.bar();
25 return 0;