aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2015-10-09 15:35:30 -0400
committerStefan Monnier2015-10-09 15:35:30 -0400
commit69b3238af2c6884d4ebbdb03603804e61fd45eba (patch)
treef62b7deb57bb023f3a3243976a1fd6cb0b5c848a
parentd72d97fcbe4f9a989d3f214eed8036bd52ff0141 (diff)
downloademacs-69b3238af2c6884d4ebbdb03603804e61fd45eba.tar.gz
emacs-69b3238af2c6884d4ebbdb03603804e61fd45eba.zip
* lisp/textmodes/reftex.el: Silence byte-compiler warnings.
-rw-r--r--lisp/textmodes/reftex.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el
index f567963dbd1..66415234033 100644
--- a/lisp/textmodes/reftex.el
+++ b/lisp/textmodes/reftex.el
@@ -1705,7 +1705,7 @@ When DIE is non-nil, throw an error if file not found."
1705(defvar message-stack) 1705(defvar message-stack)
1706(if (and (featurep 'xemacs) 1706(if (and (featurep 'xemacs)
1707 (not (fboundp 'current-message))) 1707 (not (fboundp 'current-message)))
1708 (defun current-message (&optional frame) 1708 (defun current-message (&optional _frame)
1709 (cdr (car message-stack)))) 1709 (cdr (car message-stack))))
1710 1710
1711(defun reftex-visited-files (list) 1711(defun reftex-visited-files (list)
@@ -2047,7 +2047,7 @@ IGNORE-WORDS List of words which should be removed from the string."
2047 (message "Sorry: cannot refontify RefTeX Select buffer.")))) 2047 (message "Sorry: cannot refontify RefTeX Select buffer."))))
2048 (rename-buffer oldname)))) 2048 (rename-buffer oldname))))
2049 2049
2050(defun reftex-select-font-lock-fontify-region (beg end &optional loudly) 2050(defun reftex-select-font-lock-fontify-region (beg end &optional _loudly)
2051 ;; Fontify a region, but only lines starting with a dot. 2051 ;; Fontify a region, but only lines starting with a dot.
2052 (let ((func (if (fboundp 'font-lock-default-fontify-region) 2052 (let ((func (if (fboundp 'font-lock-default-fontify-region)
2053 'font-lock-default-fontify-region 2053 'font-lock-default-fontify-region
@@ -2059,7 +2059,7 @@ IGNORE-WORDS List of words which should be removed from the string."
2059 (funcall func beg1 end1 nil) 2059 (funcall func beg1 end1 nil)
2060 (goto-char end1)))) 2060 (goto-char end1))))
2061 2061
2062(defun reftex-select-font-lock-unfontify (&rest ignore) t) 2062(defun reftex-select-font-lock-unfontify (&rest _ignore) t)
2063 2063
2064(defun reftex-verified-face (&rest faces) 2064(defun reftex-verified-face (&rest faces)
2065 ;; Return the first valid face in FACES, or nil if none is valid. 2065 ;; Return the first valid face in FACES, or nil if none is valid.
@@ -2341,6 +2341,7 @@ output buffer into your mail program, as it gives us important
2341information about your RefTeX version and configuration." 2341information about your RefTeX version and configuration."
2342 (interactive) 2342 (interactive)
2343 (require 'reporter) 2343 (require 'reporter)
2344 (defvar reporter-prompt-for-summary-p)
2344 (let ((reporter-prompt-for-summary-p "Bug report subject: ")) 2345 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
2345 (reporter-submit-bug-report 2346 (reporter-submit-bug-report
2346 "bug-auctex@gnu.org, bug-gnu-emacs@gnu.org" 2347 "bug-auctex@gnu.org, bug-gnu-emacs@gnu.org"