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: Re: Incompatible change without "warning" Date: Mon, 2 May 2005 02:06:45 +1200 Message-ID: <17012.57973.677404.342871@farnswood.snap.net.nz> References: <16997.28602.876638.54728@farnswood.snap.net.nz> <16998.58339.710430.454702@farnswood.snap.net.nz> <17000.13278.865098.49756@farnswood.snap.net.nz> <17006.1736.406738.121947@farnswood.snap.net.nz> <20050430231856.CE9369F511@mirror.positive-internet.com> <17012.21023.433350.503716@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 1114956191 19131 80.91.229.2 (1 May 2005 14:03:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 1 May 2005 14:03:11 +0000 (UTC) Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun May 01 16:03:08 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DSF27-0004JQ-Mi for ged-emacs-devel@m.gmane.org; Sun, 01 May 2005 16:02:55 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DSF8p-0002Ga-Lv for ged-emacs-devel@m.gmane.org; Sun, 01 May 2005 10:09:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DSF8g-0002G0-Do for emacs-devel@gnu.org; Sun, 01 May 2005 10:09:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DSF8g-0002Fo-6C for emacs-devel@gnu.org; Sun, 01 May 2005 10:09:42 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DSF8g-0002Ay-01 for emacs-devel@gnu.org; Sun, 01 May 2005 10:09:42 -0400 Original-Received: from [202.37.101.8] (helo=viper.snap.net.nz) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DSFAp-0006Wr-4x; Sun, 01 May 2005 10:11:55 -0400 Original-Received: from farnswood.snap.net.nz (p3-tnt2.snap.net.nz [202.124.108.3]) by viper.snap.net.nz (Postfix) with ESMTP id 860A34AF3DA; Mon, 2 May 2005 02:07:05 +1200 (NZST) Original-Received: by farnswood.snap.net.nz (Postfix, from userid 501) id 6D2C162A99; Sun, 1 May 2005 15:06:46 +0100 (BST) Original-To: rms@gnu.org In-Reply-To: X-Mailer: VM 6.97 under Emacs 21.2.1 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:36525 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:36525 I've removed: dot dot-max dot-min dot-marker buffer-flush-undo compiled-function-p allout-exposure focus-frame unfocus-frame I wasn't sure how to remove executing-macro as it is a builtin variable: (make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34") DEFVAR_LISP ("executing-macro", &Vexecuting_macro, doc: /* Currently executing keyboard macro (string or vector); nil if none executing. */); DEFVAR_INT ("executing-macro-index", &executing_macro_index, doc: /* Index in currently executing keyboard macro; undefined if none executing. */); DEFVAR_LISP_NOPRO ("executing-kbd-macro", &Vexecuting_macro, doc: /* Currently executing keyboard macro (string or vector); nil if none executing. */); Note that if you remove executing-macro you need to change the elisp manual: * The state of keyboard macro execution is saved and restored. While Edebug is active, `executing-macro' is bound to `edebug-continue-kbd-macro'. (Edebug -> The Outside Context -> Checking Whether to Stop) Here are some more obsolete functions/variables: 19.15 unread-command-char 19.23 allout-old-expose-topic 19.34 post-command-idle-hook post-command-idle-delay 20.1 define-function truncate-string 20.3 chars-in-region update-iso-coding-systems coding-system-parent 20.4 sref Quite a lot from 21.1 Quite a lot with no timestamp. Nick