diff options
| author | Joakim Verona | 2013-07-14 11:04:49 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-07-14 11:04:49 +0200 |
| commit | 0bb9bb0841d89fff09820a57369df4cb01b16b43 (patch) | |
| tree | 832bf9fa8415eef0ce464d22b3ee1300cfa90bb1 /src/profiler.c | |
| parent | 3718127221fbbc31f8ebd027ab7c95403dbe9118 (diff) | |
| parent | 3af1c8684ed6e48fbc21481d129e9aa164752c6e (diff) | |
| download | emacs-0bb9bb0841d89fff09820a57369df4cb01b16b43.tar.gz emacs-0bb9bb0841d89fff09820a57369df4cb01b16b43.zip | |
Merge branch 'trunk' into xwidget
Conflicts:
src/xdisp.c
Diffstat (limited to 'src/profiler.c')
| -rw-r--r-- | src/profiler.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/profiler.c b/src/profiler.c index aba81344c68..c86fb47d21d 100644 --- a/src/profiler.c +++ b/src/profiler.c | |||
| @@ -568,12 +568,12 @@ to make room for new entries. */); | |||
| 568 | profiler_log_size = 10000; | 568 | profiler_log_size = 10000; |
| 569 | 569 | ||
| 570 | DEFSYM (Qprofiler_backtrace_equal, "profiler-backtrace-equal"); | 570 | DEFSYM (Qprofiler_backtrace_equal, "profiler-backtrace-equal"); |
| 571 | { | 571 | |
| 572 | struct hash_table_test test | 572 | hashtest_profiler.name = Qprofiler_backtrace_equal; |
| 573 | = { Qprofiler_backtrace_equal, Qnil, Qnil, | 573 | hashtest_profiler.user_hash_function = Qnil; |
| 574 | cmpfn_profiler, hashfn_profiler }; | 574 | hashtest_profiler.user_cmp_function = Qnil; |
| 575 | hashtest_profiler = test; | 575 | hashtest_profiler.cmpfn = cmpfn_profiler; |
| 576 | } | 576 | hashtest_profiler.hashfn = hashfn_profiler; |
| 577 | 577 | ||
| 578 | defsubr (&Sfunction_equal); | 578 | defsubr (&Sfunction_equal); |
| 579 | 579 | ||