From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nick Roberts Newsgroups: gmane.emacs.devel Subject: Old code in bytecomp.el Date: Sat, 21 May 2005 14:23:30 +1200 Message-ID: <17038.39842.788716.803594@farnswood.snap.net.nz> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1116642328 6310 80.91.229.2 (21 May 2005 02:25:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 21 May 2005 02:25:28 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat May 21 04:25:17 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DZJfk-0000VY-Sl for ged-emacs-devel@m.gmane.org; Sat, 21 May 2005 04:25:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DZJii-0002GG-CC for ged-emacs-devel@m.gmane.org; Fri, 20 May 2005 22:28:08 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DZJiF-00026g-KV for emacs-devel@gnu.org; Fri, 20 May 2005 22:27:40 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DZJiA-00023X-9j for emacs-devel@gnu.org; Fri, 20 May 2005 22:27:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DZJi9-00022Z-R5 for emacs-devel@gnu.org; Fri, 20 May 2005 22:27:33 -0400 Original-Received: from [202.37.101.8] (helo=viper.snap.net.nz) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DZJla-0004K9-Px for emacs-devel@gnu.org; Fri, 20 May 2005 22:31:07 -0400 Original-Received: from farnswood.snap.net.nz (p103-tnt1.snap.net.nz [202.124.110.103]) by viper.snap.net.nz (Postfix) with ESMTP id 9D9CA5364D2 for ; Sat, 21 May 2005 14:22:10 +1200 (NZST) Original-Received: by farnswood.snap.net.nz (Postfix, from userid 501) id 923B962A99; Sat, 21 May 2005 03:23:31 +0100 (BST) Original-To: emacs-devel@gnu.org X-Mailer: VM 7.19 under Emacs 22.0.50.7 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:37422 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:37422 How about removing these from bytecomp.el? Unlike the previous variables, AFAICS these don't seem to be defined in the first place. Nick (make-obsolete-variable 'auto-fill-hook 'auto-fill-function "before 19.15") (make-obsolete-variable 'blink-paren-hook 'blink-paren-function "before 19.15") (make-obsolete-variable 'lisp-indent-hook 'lisp-indent-function "before 19.15") (make-obsolete-variable 'inhibit-local-variables "use enable-local-variables (with the reversed sense)." "before 19.15") (make-obsolete-variable 'unread-command-event "use unread-command-events; which is a list of events rather than a single event." "before 19.15") (make-obsolete-variable 'suspend-hooks 'suspend-hook "before 19.15") (make-obsolete-variable 'comment-indent-hook 'comment-indent-function "before 19.15") (make-obsolete-variable 'meta-flag "use the set-input-mode function instead." "before 19.34") (make-obsolete-variable 'before-change-function "use before-change-functions; which is a list of functions rather than a single function." "before 19.34") (make-obsolete-variable 'after-change-function "use after-change-functions; which is a list of functions rather than a single function." "before 19.34") (make-obsolete-variable 'font-lock-doc-string-face 'font-lock-string-face "before 19.34")