aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index b0227031ac7..448ef87413a 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -50,8 +50,6 @@ extern int errno;
50#include "keymap.h" 50#include "keymap.h"
51#include "frame.h" 51#include "frame.h"
52 52
53extern char * get_current_dir_name ();
54
55struct buffer *current_buffer; /* the current buffer */ 53struct buffer *current_buffer; /* the current buffer */
56 54
57/* First buffer in chain of all buffers (in reverse order of creation). 55/* First buffer in chain of all buffers (in reverse order of creation).
@@ -5136,9 +5134,9 @@ init_buffer ()
5136 Fset_buffer_multibyte (Qnil); 5134 Fset_buffer_multibyte (Qnil);
5137 5135
5138 pwd = get_current_dir_name (); 5136 pwd = get_current_dir_name ();
5139 5137
5140 if(!pwd) 5138 if(!pwd)
5141 fatal ("`get_cwd' failed: %s\n", strerror (errno)); 5139 fatal ("`get_current_dir_name' failed: %s\n", strerror (errno));
5142 5140
5143#ifndef VMS 5141#ifndef VMS
5144 /* Maybe this should really use some standard subroutine 5142 /* Maybe this should really use some standard subroutine