remove unused `defalias' function
authorBT Templeton <bpt@hcoop.net>
Tue, 10 Jul 2012 23:06:33 +0000 (19:06 -0400)
committerRobin Templeton <robin@terpri.org>
Sat, 18 Apr 2015 22:49:08 +0000 (18:49 -0400)
* src/lread.c [NOTDEF] (defalias): Remove unused function.

src/lread.c

index 5cf5553..a9bb431 100644 (file)
@@ -4093,16 +4093,6 @@ defsubr (struct Lisp_Subr *sname)
   set_symbol_function (sym, tem);
 }
 
-#ifdef NOTDEF /* Use fset in subr.el now!  */
-void
-defalias (struct Lisp_Subr *sname, char *string)
-{
-  Lisp_Object sym;
-  sym = intern (string);
-  XSETSUBR (XSYMBOL (sym)->function, sname);
-}
-#endif /* NOTDEF */
-
 /* Define an "integer variable"; a symbol whose value is forwarded to a
    C variable of type EMACS_INT.  Sample call (with "xx" to fool make-docfile):
    DEFxxVAR_INT ("emacs-priority", &emacs_priority, "Documentation");  */