diff options
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/search.c b/src/search.c index 7b74ff91480..38c64caf7c0 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -21,10 +21,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 21 | 21 | ||
| 22 | #include <config.h> | 22 | #include <config.h> |
| 23 | 23 | ||
| 24 | #ifdef HAVE_SANITIZER_LSAN_INTERFACE_H | ||
| 25 | #include <sanitizer/lsan_interface.h> | ||
| 26 | #endif | ||
| 27 | |||
| 28 | #include "lisp.h" | 24 | #include "lisp.h" |
| 29 | #include "character.h" | 25 | #include "character.h" |
| 30 | #include "buffer.h" | 26 | #include "buffer.h" |
| @@ -619,9 +615,7 @@ newline_cache_on_off (struct buffer *buf) | |||
| 619 | if (base_buf->newline_cache == 0) | 615 | if (base_buf->newline_cache == 0) |
| 620 | { | 616 | { |
| 621 | base_buf->newline_cache = new_region_cache (); | 617 | base_buf->newline_cache = new_region_cache (); |
| 622 | #ifdef HAVE___LSAN_IGNORE_OBJECT | ||
| 623 | __lsan_ignore_object (base_buf->newline_cache); | 618 | __lsan_ignore_object (base_buf->newline_cache); |
| 624 | #endif | ||
| 625 | } | 619 | } |
| 626 | } | 620 | } |
| 627 | return base_buf->newline_cache; | 621 | return base_buf->newline_cache; |