aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2012-09-09 17:11:14 -0400
committerStefan Monnier2012-09-09 17:11:14 -0400
commit70fe82368444ff578b519da75c3669b6b5cf12f0 (patch)
tree9dab491fcca127519f5b3f970bfd0ace901bd17a /src
parentaba05ce9b6381e3538cfc22dbce7dd7df4ad7342 (diff)
downloademacs-70fe82368444ff578b519da75c3669b6b5cf12f0.tar.gz
emacs-70fe82368444ff578b519da75c3669b6b5cf12f0.zip
* lisp/eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 187277d663b..3af45122a0d 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -44,7 +44,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
44#include "keymap.h" 44#include "keymap.h"
45#include "frame.h" 45#include "frame.h"
46 46
47struct buffer *current_buffer; /* the current buffer */ 47struct buffer *current_buffer; /* The current buffer. */
48 48
49/* First buffer in chain of all buffers (in reverse order of creation). 49/* First buffer in chain of all buffers (in reverse order of creation).
50 Threaded through ->header.next.buffer. */ 50 Threaded through ->header.next.buffer. */
@@ -74,12 +74,12 @@ struct buffer alignas (GCALIGNMENT) buffer_defaults;
74 and the corresponding slot in buffer_defaults is not used. 74 and the corresponding slot in buffer_defaults is not used.
75 75
76 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is 76 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
77 zero, that is a bug */ 77 zero, that is a bug. */
78 78
79struct buffer buffer_local_flags; 79struct buffer buffer_local_flags;
80 80
81/* This structure holds the names of symbols whose values may be 81/* This structure holds the names of symbols whose values may be
82 buffer-local. It is indexed and accessed in the same way as the above. */ 82 buffer-local. It is indexed and accessed in the same way as the above. */
83 83
84struct buffer alignas (GCALIGNMENT) buffer_local_symbols; 84struct buffer alignas (GCALIGNMENT) buffer_local_symbols;
85 85
@@ -108,7 +108,7 @@ static void call_overlay_mod_hooks (Lisp_Object list, Lisp_Object overlay,
108static void swap_out_buffer_local_variables (struct buffer *b); 108static void swap_out_buffer_local_variables (struct buffer *b);
109static void reset_buffer_local_variables (struct buffer *, bool); 109static void reset_buffer_local_variables (struct buffer *, bool);
110 110
111/* Alist of all buffer names vs the buffers. */ 111/* Alist of all buffer names vs the buffers. */
112/* This used to be a variable, but is no longer, 112/* This used to be a variable, but is no longer,
113 to prevent lossage due to user rplac'ing this alist or its elements. */ 113 to prevent lossage due to user rplac'ing this alist or its elements. */
114Lisp_Object Vbuffer_alist; 114Lisp_Object Vbuffer_alist;
@@ -127,7 +127,7 @@ static Lisp_Object Qpermanent_local_hook;
127 127
128static Lisp_Object Qprotected_field; 128static Lisp_Object Qprotected_field;
129 129
130static Lisp_Object QSFundamental; /* A string "Fundamental" */ 130static Lisp_Object QSFundamental; /* A string "Fundamental". */
131 131
132static Lisp_Object Qkill_buffer_hook; 132static Lisp_Object Qkill_buffer_hook;
133static Lisp_Object Qbuffer_list_update_hook; 133static Lisp_Object Qbuffer_list_update_hook;