all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: storm@cua.dk (Kim F. Storm)
Cc: emacs-devel@gnu.org
Subject: Re: Two changes to tooltip.el (proposal)
Date: 20 Nov 2002 12:46:51 +0100	[thread overview]
Message-ID: <5xfztwzcno.fsf@kfs2.cua.dk> (raw)
In-Reply-To: <15834.36871.423062.687204@nick.uklinux.net>

Nick Roberts <nick@nick.uklinux.net> writes:

> 
> (defun tooltip-identifier-from-point (point)
>   "Extract the identifier at POINT, if any."
>   (save-excursion
>     (goto-char point)
>     (gud-find-c-expr)))

Maybe this would be safer:

        (if (fboundp 'gud-find-c-expr)
            (gud-find-c-expr)
          ... old tooltip-identifier-from-point code goes here ...
          )


> ... `server print' ...

Very nice!  

I haven't been able to find any documentation on the "server" prefix;
what does it mean?  Is it related to the gdbserver program?  In that
case, does it change the semantics of the print command so that
debugging a program via gdbserver may not work properly with the change?

Even if it is harmless, are you sure "server print" is supported by
all gdb versions (do we care -- probably most systems running emacs 21.x
also have a fairly new version of gdb ?)

-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk

  reply	other threads:[~2002-11-20 11:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-11-19 19:24 Two changes to tooltip.el (proposal) Nick Roberts
2002-11-20 11:46 ` Kim F. Storm [this message]
2002-11-20 23:33   ` Nick Roberts
2002-11-25 12:37 ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5xfztwzcno.fsf@kfs2.cua.dk \
    --to=storm@cua.dk \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.