From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kaushik Srenevasan Newsgroups: gmane.emacs.devel Subject: Re: Compatibility problem with emacs 24.1 / GDB 6.3.50? Date: Thu, 14 Jun 2012 16:42:19 -0700 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1339717351 20044 80.91.229.3 (14 Jun 2012 23:42:31 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 14 Jun 2012 23:42:31 +0000 (UTC) Cc: emacs-devel@gnu.org To: Charles Tucker Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 15 01:42:31 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SfJgL-0005hN-NY for ged-emacs-devel@m.gmane.org; Fri, 15 Jun 2012 01:42:29 +0200 Original-Received: from localhost ([::1]:58437 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SfJgL-0001rO-GF for ged-emacs-devel@m.gmane.org; Thu, 14 Jun 2012 19:42:29 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:45974) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SfJgI-0001rI-Gt for emacs-devel@gnu.org; Thu, 14 Jun 2012 19:42:27 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SfJgH-0001oH-13 for emacs-devel@gnu.org; Thu, 14 Jun 2012 19:42:26 -0400 Original-Received: from mail-lb0-f169.google.com ([209.85.217.169]:62673) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SfJgG-0001nn-NN for emacs-devel@gnu.org; Thu, 14 Jun 2012 19:42:24 -0400 Original-Received: by lbjn8 with SMTP id n8so3005855lbj.0 for ; Thu, 14 Jun 2012 16:42:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=E3Y5E7QMSiyW8xL4oUpqIbv5QIZ2sFWcXXxmT7e2Duo=; b=idrYu9pifYipMC6kG0kboAz2oRcKYp9w+fScZJpM163bHj47xqkN6xUTtcnI16+8/d DFT1UTn4gU0gEH6KRV5bgrjD1SeWbFIFcHQ/vPBd9f1QguYnY2lN2kr7jxLs0/5u7LPf LbYKtHngfJa6tRP3BIoQhj42HnHFW3HXX+NkAZhoXpQ99R+5i/6z7h/MwxkzZMOvS5v+ QBK7Kbb/0bVncaOa2/7GNK/zjPQKskfTs5OqrSK5vMbHey855U8kS4wHzh7flcXcjvwE i6sqgxDymfehFwMa365muHGhSX/KpqIvQ/4EX30qr5lrRyPYUrgq6qyk6XrnVHqcI0JZ G1Sg== Original-Received: by 10.112.40.36 with SMTP id u4mr1737535lbk.70.1339717339081; Thu, 14 Jun 2012 16:42:19 -0700 (PDT) Original-Received: by 10.112.101.164 with HTTP; Thu, 14 Jun 2012 16:42:19 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.217.169 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:150952 Archived-At: On Thu, Jun 14, 2012 at 4:31 PM, Charles Tucker wrote: > Brilliant, that appears to work the way I had hoped. Is there some way of > overriding the default location emacs checks for gdb permanently? It'll get > a little tedious to type that out each time I launch a debug session. > +emacs-devel Put something like (defun my-gdb () (interactive) (gdb "/path/to/gdb ...")) where emacs can find it. You can now run M-x my-gdb. -Kaushik