aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/subr.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 23256306b89..d8b1d5a197d 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -224,6 +224,13 @@ Accept any number of arguments, but ignore them."
224(fset 'eval-current-buffer 'eval-buffer) 224(fset 'eval-current-buffer 'eval-buffer)
225(fset 'compiled-function-p 'byte-code-function-p) 225(fset 'compiled-function-p 'byte-code-function-p)
226 226
227;;; This name isn't mentioned in the manual, and we've been hoping to
228;;; phase it out, but there's still a lot of code out there, even for
229;;; Emacs 18.59, which uses mod. I'm going to let the byte compiler's
230;;; make-obsolete function to poke people a little more, and leave the
231;;; `mod' name around for a while longer.
232(fset 'mod '%)
233
227; alternate names 234; alternate names
228(fset 'string= 'string-equal) 235(fset 'string= 'string-equal)
229(fset 'string< 'string-lessp) 236(fset 'string< 'string-lessp)