diff options
| author | Glenn Morris | 2009-09-10 06:21:48 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-10 06:21:48 +0000 |
| commit | ba661bf005ac99296d1a1bdb7b8fefd0fd7ae67e (patch) | |
| tree | 6870649bb6613e795eababbd0dbcbfa754dcc65f | |
| parent | b43704f2d783b274facab98e445457d3d4bb153c (diff) | |
| download | emacs-ba661bf005ac99296d1a1bdb7b8fefd0fd7ae67e.tar.gz emacs-ba661bf005ac99296d1a1bdb7b8fefd0fd7ae67e.zip | |
(degrees-to-radians): Mark as free from side effects.
| -rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 779505e2191..ab464a86d37 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler | 1 | ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1991, 1994, 2000, 2001, 2002, 2003, 2004, | 3 | ;; Copyright (C) 1991, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, |
| 4 | ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. | 4 | ;; 2007, 2008, 2009 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Jamie Zawinski <jwz@lucid.com> | 6 | ;; Author: Jamie Zawinski <jwz@lucid.com> |
| 7 | ;; Hallvard Furuseth <hbf@ulrik.uio.no> | 7 | ;; Hallvard Furuseth <hbf@ulrik.uio.no> |
| @@ -1221,6 +1221,7 @@ | |||
| 1221 | next-window nth nthcdr number-to-string | 1221 | next-window nth nthcdr number-to-string |
| 1222 | parse-colon-path plist-get plist-member | 1222 | parse-colon-path plist-get plist-member |
| 1223 | prefix-numeric-value previous-window prin1-to-string propertize | 1223 | prefix-numeric-value previous-window prin1-to-string propertize |
| 1224 | degrees-to-radians | ||
| 1224 | radians-to-degrees rassq rassoc read-from-string regexp-quote | 1225 | radians-to-degrees rassq rassoc read-from-string regexp-quote |
| 1225 | region-beginning region-end reverse round | 1226 | region-beginning region-end reverse round |
| 1226 | sin sqrt string string< string= string-equal string-lessp string-to-char | 1227 | sin sqrt string string< string= string-equal string-lessp string-to-char |