GNU bug report logs - #8495
24.0.50: elisp info typo

Previous Next

Package: emacs;

Reported by: Alp Aker <aker <at> pitt.edu>

Date: Wed, 13 Apr 2011 21:53:01 UTC

Severity: minor

Found in version 24.0.50

Fixed in version 24.1

Done: Glenn Morris <rgm <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Alp Aker <aker <at> pitt.edu>
To: bug-gnu-emacs <at> gnu.org
Subject: 24.0.50: elisp info typo
Date: Wed, 13 Apr 2011 17:45:35 -0400 (EDT)
The info node `(elisp)Image Descriptors' states that:

  Laplace edge-detection currently uses a matrix of
       (1  0  0
        0  0  0
        9  9 -1)

but the matrix is defined in image.c as:

  static int laplace_matrix[9] = {
     /* x - 1     x       x + 1  */
          1,      0,      0,      /* y - 1 */
          0,      0,      0,      /* y     */
          0,      0,      -1      /* y + 1 */
  };





This bug report was last modified 14 years and 14 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.