aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2011-02-23 10:22:28 -0500
committerStefan Monnier2011-02-23 10:22:28 -0500
commit53cfe624fc93b0f8aea0747f4d3493881404e77f (patch)
tree0206365b692ee955ec3ede49807c5fc4fd051796
parent617a0e834a8f3870e28308cd2d04cba6d945f62b (diff)
downloademacs-53cfe624fc93b0f8aea0747f4d3493881404e77f.tar.gz
emacs-53cfe624fc93b0f8aea0747f4d3493881404e77f.zip
* lisp/emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
-rw-r--r--etc/NEWS1
-rw-r--r--lib-src/ChangeLog2
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/emacs-lisp/bytecomp.el1
-rw-r--r--lisp/international/ja-dic-cnv.el2
-rw-r--r--lisp/international/titdic-cnv.el7
6 files changed, 13 insertions, 8 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 217f5ab1d70..cfb788940d0 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -712,6 +712,7 @@ sc.el, x-menu.el, rnews.el, rnewspost.el
712 712
713* Lisp changes in Emacs 24.1 713* Lisp changes in Emacs 24.1
714 714
715** byte-compile-disable-print-circle is obsolete.
715** Removed the stack-trace-on-error variable. 716** Removed the stack-trace-on-error variable.
716Also the debugger can now "continue" from an error, which means it will jump 717Also the debugger can now "continue" from an error, which means it will jump
717to the error handler as if the debugger had not been invoked instead of 718to the error handler as if the debugger had not been invoked instead of
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index fceeaba174c..2c98cdf59a6 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -611,7 +611,7 @@
611 autoconf, not cpp. 611 autoconf, not cpp.
612 (ALL_CFLAGS): Use them as make variables. 612 (ALL_CFLAGS): Use them as make variables.
613 613
6142010-04-07 Christoph <cschol2112@googlemail.com> (tiny change) 6142010-04-07 Christoph Scholtes <cschol2112@googlemail.com>
615 615
616 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis 616 * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis
617 for macros for nmake compatibility. 617 for macros for nmake compatibility.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index df3098332f9..33f39c00a60 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/bytecomp.el (byte-compile-disable-print-circle): Obsolete.
4
12011-02-23 Kenichi Handa <handa@m17n.org> 52011-02-23 Kenichi Handa <handa@m17n.org>
2 6
3 * mail/rmailmm.el (rmail-mime-process-multipart): Do not signal an 7 * mail/rmailmm.el (rmail-mime-process-multipart): Do not signal an
@@ -9055,7 +9059,7 @@
9055 * htmlfontify.el (hfy-face-attr-for-class): Use append instead 9059 * htmlfontify.el (hfy-face-attr-for-class): Use append instead
9056 of nconc to avoid pure storage error (Bug#6239). 9060 of nconc to avoid pure storage error (Bug#6239).
9057 9061
90582010-06-27 Christoph <cschol2112@googlemail.com> (tiny change) 90622010-06-27 Christoph Scholtes <cschol2112@googlemail.com>
9059 9063
9060 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window) 9064 * bookmark.el (bookmark-bmenu-2-window, bookmark-bmenu-other-window)
9061 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary 9065 (bookmark-bmenu-other-window-with-mouse): Remove unnecessary
@@ -11238,7 +11242,7 @@
11238 11242
11239 * ido.el (ido-file-internal): Fix 2009-12-02 change. 11243 * ido.el (ido-file-internal): Fix 2009-12-02 change.
11240 11244
112412010-04-19 Christoph <cschol2112@googlemail.com> (tiny change) 112452010-04-19 Christoph Scholtes <cschol2112@googlemail.com>
11242 11246
11243 * progmodes/grep.el (grep-compute-defaults): Fix handling of host 11247 * progmodes/grep.el (grep-compute-defaults): Fix handling of host
11244 default settings (Bug#5928). 11248 default settings (Bug#5928).
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 199927d536e..2f113dfb479 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -227,6 +227,7 @@ the functions you loaded will not be able to run.")
227 227
228(defvar byte-compile-disable-print-circle nil 228(defvar byte-compile-disable-print-circle nil
229 "If non-nil, disable `print-circle' on printing a byte-compiled code.") 229 "If non-nil, disable `print-circle' on printing a byte-compiled code.")
230(make-obsolete-variable 'byte-compile-disable-print-circle nil "24.1")
230;;;###autoload(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) 231;;;###autoload(put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
231 232
232(defcustom byte-compile-dynamic-docstrings t 233(defcustom byte-compile-dynamic-docstrings t
diff --git a/lisp/international/ja-dic-cnv.el b/lisp/international/ja-dic-cnv.el
index 7e317ea09c0..c0fcf19d841 100644
--- a/lisp/international/ja-dic-cnv.el
+++ b/lisp/international/ja-dic-cnv.el
@@ -337,7 +337,7 @@ The name of generated file is specified by the variable `ja-dic-filename'."
337 (erase-buffer) 337 (erase-buffer)
338 (buffer-disable-undo) 338 (buffer-disable-undo)
339 (insert ";;; ja-dic.el --- dictionary for Japanese input method" 339 (insert ";;; ja-dic.el --- dictionary for Japanese input method"
340 " -*-coding: euc-japan; byte-compile-disable-print-circle:t; -*-\n" 340 " -*-coding: euc-japan; -*-\n"
341 ";;\tGenerated by the command `skkdic-convert'\n" 341 ";;\tGenerated by the command `skkdic-convert'\n"
342 ";;\tDate: " (current-time-string) "\n" 342 ";;\tDate: " (current-time-string) "\n"
343 ";;\tOriginal SKK dictionary file: " 343 ";;\tOriginal SKK dictionary file: "
diff --git a/lisp/international/titdic-cnv.el b/lisp/international/titdic-cnv.el
index 935d66c613b..e68dc8bdc17 100644
--- a/lisp/international/titdic-cnv.el
+++ b/lisp/international/titdic-cnv.el
@@ -272,8 +272,7 @@ SPC, 6, 3, 4, or 7 specifing a tone (SPC:$(0?v(N(B, 6:$(0Dm(N(B, 3:$(0&9Vy
272 272
273 (princ ";; Quail package `") 273 (princ ";; Quail package `")
274 (princ package) 274 (princ package)
275 (princ (format "' -*- coding:%s; " coding-system-for-write)) 275 (princ (format "' -*- coding:%s -*-\n" coding-system-for-write))
276 (princ "byte-compile-disable-print-circle:t; -*-\n")
277 (princ ";; Generated by the command `titdic-convert'\n;;\tDate: ") 276 (princ ";; Generated by the command `titdic-convert'\n;;\tDate: ")
278 (princ (current-time-string)) 277 (princ (current-time-string))
279 (princ "\n;;\tOriginal TIT dictionary file: ") 278 (princ "\n;;\tOriginal TIT dictionary file: ")
@@ -1154,8 +1153,8 @@ the generated Quail package is saved."
1154 (setq coding-system-for-write 1153 (setq coding-system-for-write
1155 (coding-system-change-eol-conversion coding 'unix)) 1154 (coding-system-change-eol-conversion coding 'unix))
1156 (with-temp-file (expand-file-name quailfile dirname) 1155 (with-temp-file (expand-file-name quailfile dirname)
1157 (insert (format ";; Quail package `%s' -*- coding:%s; " name coding)) 1156 (insert (format ";; Quail package `%s' -*- coding:%s -*-\n"
1158 (insert "byte-compile-disable-print-circle:t; -*-\n") 1157 name coding))
1159 (insert ";; Generated by the command `miscdic-convert'\n") 1158 (insert ";; Generated by the command `miscdic-convert'\n")
1160 (insert ";; Date: " (current-time-string) "\n") 1159 (insert ";; Date: " (current-time-string) "\n")
1161 (insert ";; Source dictionary file: " dicfile "\n") 1160 (insert ";; Source dictionary file: " dicfile "\n")