diff options
| author | Andreas Schwab | 1997-11-21 15:07:57 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1997-11-21 15:07:57 +0000 |
| commit | 0c60dfd7b4834041e0205b4bb45b27c7d1a7732a (patch) | |
| tree | 856f82944327a74abc36525ee59dbf4f210fe83f | |
| parent | fd6a330f5ed7022d36943cbe1f6d77449d4e53c2 (diff) | |
| download | emacs-0c60dfd7b4834041e0205b4bb45b27c7d1a7732a.tar.gz emacs-0c60dfd7b4834041e0205b4bb45b27c7d1a7732a.zip | |
(traverse_intervals): Protoize parameter.
| -rw-r--r-- | src/intervals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intervals.c b/src/intervals.c index 33cef35c654..25bc6e3c46b 100644 --- a/src/intervals.c +++ b/src/intervals.c | |||
| @@ -198,7 +198,7 @@ void | |||
| 198 | traverse_intervals (tree, position, depth, function, arg) | 198 | traverse_intervals (tree, position, depth, function, arg) |
| 199 | INTERVAL tree; | 199 | INTERVAL tree; |
| 200 | int position, depth; | 200 | int position, depth; |
| 201 | void (* function) (); | 201 | void (* function) P_ ((INTERVAL, Lisp_Object)); |
| 202 | Lisp_Object arg; | 202 | Lisp_Object arg; |
| 203 | { | 203 | { |
| 204 | if (NULL_INTERVAL_P (tree)) | 204 | if (NULL_INTERVAL_P (tree)) |