aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/mail/emacsbug.el7
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 420e4d992bd..6203b2a7790 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12012-09-24 Glenn Morris <rgm@gnu.org>
2
3 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
4
12012-09-23 Fabián Ezequiel Gallina <fgallina@cuca> 52012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
2 6
3 * progmodes/python.el (python-indent-line): More consistent cursor 7 * progmodes/python.el (python-indent-line): More consistent cursor
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index ca9bc6b8676..ad2167bd6f8 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -248,6 +248,13 @@ usually do not have translators for other languages.\n\n")))
248 "', version " 248 "', version "
249 (mapconcat 'number-to-string (x-server-version) ".") "\n") 249 (mapconcat 'number-to-string (x-server-version) ".") "\n")
250 (error t))) 250 (error t)))
251 (let ((lsb (with-temp-buffer
252 (if (eq 0 (ignore-errors
253 (call-process "lsb_release" nil '(t nil)
254 nil "-d")))
255 (buffer-string)))))
256 (if (stringp lsb)
257 (insert "LSB Release " lsb "\n")))
251 (when (and system-configuration-options 258 (when (and system-configuration-options
252 (not (equal system-configuration-options ""))) 259 (not (equal system-configuration-options "")))
253 (insert "Configured using:\n `configure " 260 (insert "Configured using:\n `configure "