Search Results

3
votes

replace-char in Emacs Lisp ?

Why not just use (replace-string "\x53979" "'") or (while (search-forward "\x53979" nil t) (replace-match "'" nil t)) as reco …
6
votes

Why are fixnums in emacs only 29 bits?

The remaining 3 bits are used as flags by the Lisp interpreter. (You can get bigger integers by compiling Emacs for a 64-bit machine.) …
0
votes

How to invoke an interactive elisp interpreter in Emacs?

In the *scratch* buffer, just type C-j to evaluate the expression before point. …
3
votes

How to refer to the file currently being loaded in Emacs Lisp?

M-x describe-variable load-file-name load-file-name is a variable defined in `C source code'. Documentation: Full name of file being loaded by `load'. …
4
votes

debug elisp major mode

Find the Lisp source of the function you'd like to step through, and type M-x edebug-defun there. Then, whenever that function is executed, you'll automatically be placed into Edebug, …
2
votes

emacs: visual-line-mode and fill-paragraph…

(defun maybe-fill-paragraph (&optional justify region) "Fill paragraph at or after point (see `fill-paragraph'). Does nothing if `visual-line-mode' is on." (interactive (progn …