• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Wilfred / helpful / 430
75%

Build:
DEFAULT BRANCH: master
Ran 28 Feb 2019 12:57AM UTC
Jobs 4
Files 1
Run time 46s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
430

push

travis-ci

Wilfred
Handle C-style names in helpful-symbol

In Emacs's C core, Lisp functions and variables take on slightly
different names: dashes are replaced with underscores, and functions
and variables are prefixed with "F" and "V" respectively. This change
allows for looking up those symbols. For example, if I am looking at
the source for `purecopy':

  DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
         doc: /* Make a copy of object OBJ in pure storage.
  Recursively copies contents of vectors and cons cells.
  Does not copy symbols.  Copies strings without text properties.  */)
    (register Lisp_Object obj)
  {
    if (NILP (Vpurify_flag))
      return obj;
    else if (MARKERP (obj) || OVERLAYP (obj) || SYMBOLP (obj))
      /* Can't purify those.  */
      return obj;
    else
      return purecopy (obj);
  }

I can run `helpful-at-point' on `Vpurify_flag'.

This doesn't support running C-style names through `helpful-callable'
etc, but that doesn't seem like a useful feature.

997 of 1326 relevant lines covered (75.19%)

5481.12 hits per line

Jobs
ID Job ID Ran Files Coverage
1 430.1 (EVM_EMACS=emacs-25.1-travis) 28 Feb 2019 12:57AM UTC 0
75.19
Travis Job 430.1
2 430.2 (EVM_EMACS=emacs-25.2-travis) 28 Feb 2019 12:57AM UTC 0
75.19
Travis Job 430.2
3 430.3 (EVM_EMACS=emacs-25.3-travis) 28 Feb 2019 12:57AM UTC 0
75.19
Travis Job 430.3
4 430.4 (EVM_EMACS=emacs-26.1-travis) 28 Feb 2019 12:57AM UTC 0
75.19
Travis Job 430.4
Source Files on build 430
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #430
  • 28bae3e2 on github
  • Prev Build on master (#429)
  • Next Build on master (#431)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc