diff options
| author | Dan Nicolaescu | 2010-08-05 16:34:12 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-08-05 16:34:12 -0700 |
| commit | 04bab72cc68e3b7b1bca9b871314fb79badd7042 (patch) | |
| tree | 9d9fbcfdc8b4c26d2592afe37ccc9ba6672d8d21 /src/data.c | |
| parent | dff94ed500892b5b3fcd067a280c81ba04ddf5f1 (diff) | |
| download | emacs-04bab72cc68e3b7b1bca9b871314fb79badd7042.tar.gz emacs-04bab72cc68e3b7b1bca9b871314fb79badd7042.zip | |
Remove extern declarations in .c files, .h files have them.
* src/data.c:
* src/dired.c:
* src/editfns.c:
* src/filelock.c:
* src/fns.c:
* src/font.c:
* src/fontset.c:
* src/frame.c:
* src/fringe.c:
* src/ftfont.c:
* src/gtkutil.c:
* src/indent.c:
* src/keyboard.c:
* src/keymap.c:
* src/lread.c:
* src/menu.c:
* src/print.c:
* src/search.c:
* src/sound.c:
* src/window.c:
* src/xdisp.c:
* src/xfaces.c:
* src/xfns.c:
* src/xfont.c:
* src/xftfont.c:
* src/xmenu.c:
* src/xterm.c: Remove declarations.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c index 570f3053975..630d341a20e 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -665,8 +665,6 @@ DEFUN ("fset", Ffset, Sfset, 2, 2, 0, | |||
| 665 | return definition; | 665 | return definition; |
| 666 | } | 666 | } |
| 667 | 667 | ||
| 668 | extern Lisp_Object Qfunction_documentation; | ||
| 669 | |||
| 670 | DEFUN ("defalias", Fdefalias, Sdefalias, 2, 3, 0, | 668 | DEFUN ("defalias", Fdefalias, Sdefalias, 2, 3, 0, |
| 671 | doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION. | 669 | doc: /* Set SYMBOL's function definition to DEFINITION, and return DEFINITION. |
| 672 | Associates the function with the current load file, if any. | 670 | Associates the function with the current load file, if any. |
| @@ -2503,8 +2501,6 @@ enum arithop | |||
| 2503 | 2501 | ||
| 2504 | static Lisp_Object float_arith_driver (double, int, enum arithop, | 2502 | static Lisp_Object float_arith_driver (double, int, enum arithop, |
| 2505 | int, Lisp_Object *); | 2503 | int, Lisp_Object *); |
| 2506 | extern Lisp_Object fmod_float (Lisp_Object, Lisp_Object); | ||
| 2507 | |||
| 2508 | Lisp_Object | 2504 | Lisp_Object |
| 2509 | arith_driver (enum arithop code, int nargs, register Lisp_Object *args) | 2505 | arith_driver (enum arithop code, int nargs, register Lisp_Object *args) |
| 2510 | { | 2506 | { |