From cf503f7c08c73b89485ac3d00af917875ed13b39 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 2 Nov 2010 20:40:54 -0700 Subject: Mere anarchy is loosed upon the world. * doc/misc/gnus.texi (Agent Variables): Spelling fix. --- src/buffer.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/buffer.h') diff --git a/src/buffer.h b/src/buffer.h index 3a4dd106360..9e3de6f23d5 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -1,7 +1,8 @@ /* Header file for the buffer manipulation primitives. - Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, - 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 - Free Software Foundation, Inc. + +Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000, + 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -459,7 +460,7 @@ struct buffer_text struct Lisp_Marker *markers; /* Usually 0. Temporarily set to 1 in decode_coding_gap to - prevent Fgarbage_collect from shrinking the gap and loosing + prevent Fgarbage_collect from shrinking the gap and losing not-yet-decoded bytes. */ int inhibit_shrinking; }; @@ -1019,5 +1020,3 @@ extern int last_per_buffer_idx; #define PER_BUFFER_VALUE(BUFFER, OFFSET) \ (*(Lisp_Object *)((OFFSET) + (char *) (BUFFER))) -/* arch-tag: 679305dd-d41c-4a50-b170-3caf5c97b2d1 - (do not change this comment) */ -- cgit v1.2.1 From b7982059664f947cf99a296005adbb596837120a Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Sat, 20 Nov 2010 21:20:50 -0800 Subject: Remove INLINE uses in header files. * src/intervals.h (temp_set_point, temp_set_point_both): * src/buffer.h (offset_intervals, copy_intervals): Remove INLINE. --- src/buffer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/buffer.h') diff --git a/src/buffer.h b/src/buffer.h index 9e3de6f23d5..79acd16b6fd 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -227,10 +227,10 @@ along with GNU Emacs. If not, see . */ (temp_set_point ((buffer), (position))) extern void set_point (EMACS_INT); -extern INLINE void temp_set_point (struct buffer *, EMACS_INT); +extern void temp_set_point (struct buffer *, EMACS_INT); extern void set_point_both (EMACS_INT, EMACS_INT); -extern INLINE void temp_set_point_both (struct buffer *, - EMACS_INT, EMACS_INT); +extern void temp_set_point_both (struct buffer *, + EMACS_INT, EMACS_INT); extern void enlarge_buffer_text (struct buffer *, EMACS_INT); -- cgit v1.2.1