aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorJoakim Verona2012-09-11 17:18:45 +0200
committerJoakim Verona2012-09-11 17:18:45 +0200
commit0cc36550df4f355a1b46e944fc65e533ff0df90e (patch)
tree100e4130dffa88423b6430c2814f740007b72269 /src/alloc.c
parentb035a30e5cd2f34fedc04c253eeb5a11afed8145 (diff)
parent96d0357142bf277e6eb4d957a59b2c655034e2b7 (diff)
downloademacs-0cc36550df4f355a1b46e944fc65e533ff0df90e.tar.gz
emacs-0cc36550df4f355a1b46e944fc65e533ff0df90e.zip
upstream
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 33dc68df48e..7bbc0abcd9a 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -3682,7 +3682,7 @@ build_marker (struct buffer *buf, ptrdiff_t charpos, ptrdiff_t bytepos)
3682 struct Lisp_Marker *m; 3682 struct Lisp_Marker *m;
3683 3683
3684 /* No dead buffers here. */ 3684 /* No dead buffers here. */
3685 eassert (!NILP (BVAR (buf, name))); 3685 eassert (BUFFER_LIVE_P (buf));
3686 3686
3687 /* Every character is at least one byte. */ 3687 /* Every character is at least one byte. */
3688 eassert (charpos <= bytepos); 3688 eassert (charpos <= bytepos);