emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r107931: * lisp/play/yow.el (yow-file


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107931: * lisp/play/yow.el (yow-file): Use expand-file-name rather than concat.
Date: Mon, 16 Apr 2012 15:02:59 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107931
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2012-04-16 15:02:59 -0400
message:
  * lisp/play/yow.el (yow-file): Use expand-file-name rather than concat.
  Remove old comment.
modified:
  lisp/ChangeLog
  lisp/play/yow.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-04-16 19:01:30 +0000
+++ b/lisp/ChangeLog    2012-04-16 19:02:59 +0000
@@ -1,5 +1,7 @@
 2012-04-16  Glenn Morris  <address@hidden>
 
+       * play/yow.el (yow-file): Use expand-file-name rather than concat.
+
        * progmodes/perl-mode.el (c-macro-expand):
        Remove unnecessary autoload (it is in loaddefs.el).
 

=== modified file 'lisp/play/yow.el'
--- a/lisp/play/yow.el  2012-01-19 07:21:25 +0000
+++ b/lisp/play/yow.el  2012-04-16 19:02:59 +0000
@@ -1,6 +1,6 @@
 ;;; yow.el --- quote random zippyisms
 
-;; Copyright (C) 1993-1995, 2000-2012  Free Software Foundation, Inc.
+;; Copyright (C) 1993-1995, 2000-2012 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Author: Richard Mlynarik
@@ -24,10 +24,6 @@
 ;;; Commentary:
 
 ;; Important pinheadery for GNU Emacs.
-;;
-;; See cookie1.el for implementation.  Note --- the `n' argument of yow
-;; from the 18.xx implementation is no longer; we only support *random*
-;; random access now.
 
 ;;; Code:
 
@@ -38,7 +34,7 @@
   :prefix "yow-"
   :group 'games)
 
-(defcustom yow-file (concat data-directory "yow.lines")
+(defcustom yow-file (expand-file-name data-directory "yow.lines")
    "File containing pertinent pinhead phrases."
   :type 'file
   :group 'yow)


reply via email to

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