help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Size of startup files


From: Emanuel Berg
Subject: Re: Size of startup files
Date: Tue, 22 Nov 2022 15:45:57 +0100
User-agent: Gnus/5.13 (Gnus v5.13)

Marcin Borkowski wrote:

> excluding blank lines and comment-only lines

But they are part of the source - why not? So this is 5 lines

  /****************/
  /* add one to i */
  /****************/

  i++;

just as this

  int i = 0; printf('%d %d', i, i++);

is 1 line.

So all you have to do to count you Elisp SLOC, all files, is

  $ wc -l ~/.emacs.d/emacs-init/**/*.el | awk 'END { print $1 }'

9314

https://dataswamp.org/~incal/conf/.zsh/emacs

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]