GNU, linux based systems, free software and other computer related things...

GNU EMACS

The GNU Emacs Manual

GNU Emacs Lips Reference Manual


Function that creates a new black on white colored frame which runs w3m.

(defun make-w3m-frame ()
  (interactive)
  (select-frame (make-frame))
  (set-background-color "white")
  (set-foreground-color "black")
  (w3m))


Function that deletes all vowels from current buffer.

(defun delete-vowels ()
  (interactive)
  (beginning-of-buffer)
  (setq char (following-char))
  (while (not (= char 0))
    (if (or (= char 97) (= char 101) (= char 105) (= char 111) (= char 117))
	(delete-char 1)
      ())
    (forward-char)
    (setq char (following-char))))

You can freely copy, change or create derivative works from this page contents, only requisite is adding a link to this web page.