diff options
| author | Jim Blandy | 1993-02-14 14:35:19 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-02-14 14:35:19 +0000 |
| commit | d2ec895603579dfeb185c031f979b68aed24717a (patch) | |
| tree | ace683550612cbb4f39477530d08d48396490869 | |
| parent | 37c0ad585e2c94330fc434b66e61dbd1ced4073e (diff) | |
| download | emacs-d2ec895603579dfeb185c031f979b68aed24717a.tar.gz emacs-d2ec895603579dfeb185c031f979b68aed24717a.zip | |
* subr.el (mod): Add back this alias for %.
| -rw-r--r-- | lisp/subr.el | 7 |
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) |