all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#8495: 24.0.50: elisp info typo
@ 2011-04-13 21:45 Alp Aker
  2011-05-12  7:27 ` Glenn Morris
  0 siblings, 1 reply; 2+ messages in thread
From: Alp Aker @ 2011-04-13 21:45 UTC (permalink / raw)
  To: 8495

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 */
   };






^ permalink raw reply	[flat|nested] 2+ messages in thread

* bug#8495: 24.0.50: elisp info typo
  2011-04-13 21:45 bug#8495: 24.0.50: elisp info typo Alp Aker
@ 2011-05-12  7:27 ` Glenn Morris
  0 siblings, 0 replies; 2+ messages in thread
From: Glenn Morris @ 2011-05-12  7:27 UTC (permalink / raw)
  To: Alp Aker; +Cc: 8495

Version: 24.1

Thanks; fixed.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-05-12  7:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-13 21:45 bug#8495: 24.0.50: elisp info typo Alp Aker
2011-05-12  7:27 ` Glenn Morris

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.