unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* How to submit a small patch, update to Emacs Lisp parser
@ 2024-11-20  8:43 Ramin Honary
  2024-11-20 19:17 ` lloda
  0 siblings, 1 reply; 2+ messages in thread
From: Ramin Honary @ 2024-11-20  8:43 UTC (permalink / raw)
  To: guile-devel

[-- Attachment #1: Type: text/plain, Size: 1632 bytes --]

Hello Guile developers:

I have made a small bug fix for the Emacs Lisp parser in the (language
elisp) module.

  - I fixed a simple bug in the lexer that decodes the carat encoding
for control characters (for example "^@" translates to #\null),

  - and I implemented octal digit decoding in the lexer.

I have tested these changes against Emacs Lisp code from the GNU Emacs
source code. I can confirm that files like "subr.el" can be fully
parsed to list data structures in Scheme now. Here is a simple test
program that parses "subr.el" from GNU Emacs:

(use-modules ((language elisp parser) #:select (read-elisp)))

(define (file-read-all-forms filepath)
  (call-with-port (open-input-file filepath)
    (lambda (port)
      (let loop ((forms-list '()))
        (let ((form (read-elisp port)))
          (cond
           ((eof-object? form) (reverse forms-list))
           (else (loop (cons form forms-list)))
           ))))))

(define path-to-test-el "/home/ramin/src/emacs-29.4/lisp/subr.el")

(define (main)
  (for-each
   (lambda (form) (display form) (newline))
   (file-read-all-forms path-to-test-el)))

Before applying my patch, the above test program fails with:

ice-9/boot-9.scm:1685:16: In procedure raise-exception:
In procedure integer->char: Argument 1 out of range: 67108955

After applying my patch, the whole file parses successfully.

The patch is not that large, so I am attaching it to this e-mail. But
if you would prefer, I can submit it by some other means, such as the
Savannah Git server, if you can instruct me how to do so.

Regards,

-- Ramin Honary


(ActivityPub: @ramin_hal9001@fe.disroot.org)

[-- Attachment #2: 2024-11-20_ramin-honary_improve-elisp-parser.patch.gz --]
[-- Type: application/gzip, Size: 3723 bytes --]

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

* Re: How to submit a small patch, update to Emacs Lisp parser
  2024-11-20  8:43 How to submit a small patch, update to Emacs Lisp parser Ramin Honary
@ 2024-11-20 19:17 ` lloda
  0 siblings, 0 replies; 2+ messages in thread
From: lloda @ 2024-11-20 19:17 UTC (permalink / raw)
  To: Ramin Honary; +Cc: guile-devel@gnu.org

[-- Attachment #1: Type: text/plain, Size: 399 bytes --]


HACKING in the source tree has submission instructions, but in short,

- git format-patch HEAD~N where N is however many patches the change is over main
- attach the .patch files directly to the email. Better not to compress them.

Ideally, you'd file a bug (bug-guile@gnu.org <mailto:bug-guile@gnu.org>) and attach the patches there. That makes keeping track of things easier.

regards


[-- Attachment #2: Type: text/html, Size: 839 bytes --]

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

end of thread, other threads:[~2024-11-20 19:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-20  8:43 How to submit a small patch, update to Emacs Lisp parser Ramin Honary
2024-11-20 19:17 ` lloda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).