all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: storm@cua.dk (Kim F. Storm)
To: Glenn Morris <rgm@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: Move etc/future-bug into etc/JOKES ??
Date: Thu, 01 Mar 2007 13:54:45 +0100	[thread overview]
Message-ID: <m3ejo9unsa.fsf@kfs-l.imdomain.dk> (raw)
In-Reply-To: <m3vehl6df0.fsf@kfs-l.imdomain.dk> (Kim F. Storm's message of "Thu\, 01 Mar 2007 01\:00\:19 +0100")

storm@cua.dk (Kim F. Storm) writes:

> Besides, I strongly doubt many people would browse etc/ for
> interesting stuff - in particular if you use a pre-installed
> emacs not many users would be looking in /usr/share/emacs/22.1/etc
> (or whereever it is located).
>
> That's also why binding C-h j to show the JOKES file would make sense.
>
> And C-h D to show etc/DEBUG for debugging.

Here is a small patch for help.el which provides the following additional
help commands:

C-h C-j  => Display jokes  (JOKES + future-bug + DEVEL.HUMOR)

C-h C-o  => Display other info sources  (MORE.STUFF)

C-h D    => Debugging GNU Emacs  (DEBUG)


It also enables goto-address for all such files, so the ULR's
are properly highlighted and can be activated with the mouse.

BTW, why does MORE.STUFF put "URL:" in front of all URL's ?
goto-address does not need it, and it just looks plain ugly to me.


*** help.el	28 Feb 2007 23:33:46 +0100	1.326
--- help.el	01 Mar 2007 13:43:49 +0100	
***************
*** 50,57 ****
--- 50,59 ----
      (define-key map "\C-d" 'describe-distribution)
      (define-key map "\C-e" 'view-emacs-problems)
      (define-key map "\C-f" 'view-emacs-FAQ)
+     (define-key map "\C-j" 'view-emacs-jokes)
      (define-key map "\C-m" 'view-order-manuals)
      (define-key map "\C-n" 'view-emacs-news)
+     (define-key map "\C-o" 'view-other-info-sources)
      (define-key map "\C-p" 'describe-project)
      (define-key map "\C-t" 'view-todo)
      (define-key map "\C-w" 'describe-no-warranty)
***************
*** 60,65 ****
--- 62,68 ----
      (define-key map "\C-\\" 'describe-input-method)
  
      (define-key map "C" 'describe-coding-system)
+     (define-key map "D" 'view-emacs-debugging)
      (define-key map "F" 'Info-goto-emacs-command-node)
      (define-key map "I" 'describe-input-method)
      (define-key map "K" 'Info-goto-emacs-key-command-node)
***************
*** 178,184 ****
  (defalias 'help-for-help 'help-for-help-internal)
  ;; It can't find this, but nobody will look.
  (make-help-screen help-for-help-internal
!   "a b c C e f F i I k C-k l L m p r s t v w C-c C-d C-f C-n C-p C-t C-w . or ? :"
    "You have typed %THIS-KEY%, the help character.  Type a Help option:
  \(Use SPC or DEL to scroll through this text.  Type \\<help-map>\\[help-quit] to exit the Help command.)
  
--- 181,187 ----
  (defalias 'help-for-help 'help-for-help-internal)
  ;; It can't find this, but nobody will look.
  (make-help-screen help-for-help-internal
!   "Type a help option: [abcCdDefFiIkKlLmprstvw.] C-[cdefjmnoptw] or ?"
    "You have typed %THIS-KEY%, the help character.  Type a Help option:
  \(Use SPC or DEL to scroll through this text.  Type \\<help-map>\\[help-quit] to exit the Help command.)
  
***************
*** 192,197 ****
--- 195,201 ----
  d  apropos-documentation.  Type a pattern (a list of words or a regexp), and
  	it shows a list of functions, variables, and other items whose
  	documentation matches that pattern.  See also the apropos command.
+ D  view-emacs-debugging.  Display information about Emacs debugging.
  e  view-echo-area-messages.  Go to the buffer that logs echo-area messages.
  f  describe-function.  Type a function name and you see its documentation.
  F  Info-goto-emacs-command-node.  Type a command name;
***************
*** 226,236 ****
          in the echo area.
  
  C-c Display Emacs copying permission (GNU General Public License).
! C-d Display Emacs ordering information.
  C-e Display info about Emacs problems.
  C-f Display the Emacs FAQ.
  C-m Display how to order printed Emacs manuals.
  C-n Display news of recent Emacs changes.
  C-p Display information about the GNU project.
  C-t Display the Emacs TODO list.
  C-w Display information on absence of warranty for GNU Emacs."
--- 230,242 ----
          in the echo area.
  
  C-c Display Emacs copying permission (GNU General Public License).
! C-d Display Emacs distribution and ordering information.
  C-e Display info about Emacs problems.
  C-f Display the Emacs FAQ.
+ C-j Display jokes about Emacs, GNU, and hacking.
  C-m Display how to order printed Emacs manuals.
  C-n Display news of recent Emacs changes.
+ C-o Display other sources of information about Emacs.
  C-p Display information about the GNU project.
  C-t Display the Emacs TODO list.
  C-w Display information on absence of warranty for GNU Emacs."
***************
*** 279,300 ****
  \f
  ;;; `User' help functions
  
  (defun describe-distribution ()
    "Display info on how to obtain the latest version of GNU Emacs."
    (interactive)
!   (view-file (expand-file-name "DISTRIB" data-directory)))
  
  (defun describe-copying ()
    "Display info on how you may redistribute copies of GNU Emacs."
    (interactive)
!   (view-file (expand-file-name "COPYING" data-directory))
!   (goto-char (point-min)))
  
  (defun describe-project ()
    "Display info on the GNU project."
    (interactive)
!   (view-file (expand-file-name "THE-GNU-PROJECT" data-directory))
!   (goto-char (point-min)))
  
  (defun describe-no-warranty ()
    "Display info on all the kinds of warranty Emacs does NOT have."
--- 285,309 ----
  \f
  ;;; `User' help functions
  
+ (defun view-help-file (file &optional dir)
+   (view-file (expand-file-name file (or dir data-directory)))
+   (goto-address)
+   (goto-char (point-min)))
+ 
  (defun describe-distribution ()
    "Display info on how to obtain the latest version of GNU Emacs."
    (interactive)
!   (view-help-file "DISTRIB"))
  
  (defun describe-copying ()
    "Display info on how you may redistribute copies of GNU Emacs."
    (interactive)
!   (view-help-file "COPYING"))
  
  (defun describe-project ()
    "Display info on the GNU project."
    (interactive)
!   (view-help-file "THE-GNU-PROJECT"))
  
  (defun describe-no-warranty ()
    "Display info on all the kinds of warranty Emacs does NOT have."
***************
*** 397,403 ****
  (defun view-todo (&optional arg)
    "Display the Emacs TODO list."
    (interactive "P")
!   (view-file (expand-file-name "TODO" data-directory)))
  
  (defun view-echo-area-messages ()
    "View the log of recent echo-area messages: the `*Messages*' buffer.
--- 406,412 ----
  (defun view-todo (&optional arg)
    "Display the Emacs TODO list."
    (interactive "P")
!   (view-help-file "TODO"))
  
  (defun view-echo-area-messages ()
    "View the log of recent echo-area messages: the `*Messages*' buffer.
***************
*** 409,416 ****
  (defun view-order-manuals ()
    "Display the Emacs ORDERS file."
    (interactive)
!   (view-file (expand-file-name "ORDERS" data-directory))
!   (goto-address))
  
  (defun view-emacs-FAQ ()
    "Display the Emacs Frequently Asked Questions (FAQ) file."
--- 418,424 ----
  (defun view-order-manuals ()
    "Display the Emacs ORDERS file."
    (interactive)
!   (view-help-file "ORDERS"))
  
  (defun view-emacs-FAQ ()
    "Display the Emacs Frequently Asked Questions (FAQ) file."
***************
*** 421,427 ****
  (defun view-emacs-problems ()
    "Display info on known problems with Emacs and possible workarounds."
    (interactive)
!   (view-file (expand-file-name "PROBLEMS" data-directory)))
  
  (defun view-lossage ()
    "Display last 100 input keystrokes.
--- 429,465 ----
  (defun view-emacs-problems ()
    "Display info on known problems with Emacs and possible workarounds."
    (interactive)
!   (view-help-file "PROBLEMS"))
! 
! (defun view-emacs-debugging ()
!   "Display info on how to debug Emacs problems."
!   (interactive)
!   (view-help-file "DEBUG"))
! 
! (defun view-other-info-sources ()
!   "Display other sources of information about Emacs (MORE.STUFF)."
!   (interactive)
!   (view-help-file "MORE.STUFF"))
! 
! (defun view-emacs-jokes ()
!   "Display jokes about Emacs, the GNU project, and hacking."
!   (interactive)
!   (let ((buf (get-buffer-create "*JOKES*")))
!     (with-current-buffer buf
!       (let ((inhibit-read-only t))
! 	(erase-buffer)
! 	(insert "* Jokes about Emacs, GNU, and hacking\n\n\n")
! 	(insert-file-contents (expand-file-name "JOKES" data-directory))
! 	(goto-char (point-max))
! 	(insert "\n\n\n* Bug reports\n\n\n")
! 	(insert-file-contents (expand-file-name "future-bug" data-directory))
! 	(goto-char (point-max))
! 	(insert "\n\n\n* Emacs developer list humor\n\n\n")
! 	(insert-file-contents (expand-file-name "DEVEL.HUMOR" data-directory))
! 	(outline-mode)
! 	(view-mode)
! 	(goto-char (point-min))))
!     (display-buffer buf)))
  
  (defun view-lossage ()
    "Display last 100 input keystrokes.

-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk

  parent reply	other threads:[~2007-03-01 12:54 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1HMGG3-0006ry-7U@savannah.gnu.org>
2007-02-28 10:18 ` Move etc/future-bug into etc/JOKES ?? Kim F. Storm
2007-02-28 10:57   ` Juanma Barranquero
2007-02-28 11:27     ` David Kastrup
2007-02-28 12:22       ` Juanma Barranquero
2007-02-28 12:30         ` David Kastrup
2007-02-28 12:40           ` Juanma Barranquero
2007-02-28 11:30     ` Kim F. Storm
2007-02-28 12:18       ` Juanma Barranquero
2007-02-28 14:14         ` Kim F. Storm
2007-02-28 14:31           ` Juanma Barranquero
2007-02-28 20:02       ` Glenn Morris
2007-02-28 19:57   ` Glenn Morris
2007-02-28 20:30     ` Eli Zaretskii
2007-03-01  0:00     ` Kim F. Storm
2007-03-01  0:38       ` Juanma Barranquero
2007-03-01 10:05         ` Kim F. Storm
2007-03-01 10:28           ` David Kastrup
2007-03-01 12:37             ` Kim F. Storm
2007-03-01 15:25               ` David Kastrup
2007-03-01 16:11                 ` Kim F. Storm
2007-03-01 17:13                   ` Jay Belanger
2007-03-01 12:54       ` Kim F. Storm [this message]
2007-03-01 13:42         ` Kim F. Storm
2007-03-01 17:28           ` Drew Adams
2007-03-01 22:18             ` Kim F. Storm
2007-03-01 22:23               ` Jay Belanger
2007-03-01 22:58                 ` Drew Adams
2007-03-01 22:56               ` Drew Adams
2007-03-02  3:28             ` Richard Stallman
2007-03-02  7:46             ` Kevin Rodgers
2007-03-01  7:24     ` Karl Fogel
2007-03-01  1:09   ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3ejo9unsa.fsf@kfs-l.imdomain.dk \
    --to=storm@cua.dk \
    --cc=emacs-devel@gnu.org \
    --cc=rgm@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.