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

Wilfred / helpful / 430 / 1
75%
master: 75%

Build:
DEFAULT BRANCH: master
Ran 28 Feb 2019 12:57AM UTC
Files 1
Run time 0s
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

28 Feb 2019 12:55AM UTC coverage: 75.189% (-0.3%) from 75.515%
EVM_EMACS=emacs-25.1-travis

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%)

1355.98 hits per line

Source Files on job 430.1 (EVM_EMACS=emacs-25.1-travis)
  • Tree
  • List 0
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 251
  • Travis Job 430.1
  • 28bae3e2 on github
  • Prev Job for EVM_EMACS=emacs-25.1-travis on master (#429.1)
  • Next Job for EVM_EMACS=emacs-25.1-travis on master (#431.1)
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