[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/data.c
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/src/data.c |
Date: |
Tue, 11 Apr 2006 07:13:41 +0000 |
Index: emacs/src/data.c
diff -u emacs/src/data.c:1.262 emacs/src/data.c:1.263
--- emacs/src/data.c:1.262 Fri Feb 10 22:34:24 2006
+++ emacs/src/data.c Tue Apr 11 07:13:33 2006
@@ -125,7 +125,14 @@
tem = call1 (predicate, value);
}
while (NILP (tem));
+ /* This function is marked as NO_RETURN, gcc would warn if it has a
+ return statement or if falls off the function. Other compilers
+ warn if no return statement is present. */
+#ifndef __GNUC__
return value;
+#else
+ abort ();
+#endif
}
void
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/src/data.c,
Dan Nicolaescu <=