1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

* lisp/play/yow.el (yow-file): Use expand-file-name rather than concat.

Remove old comment.
This commit is contained in:
Glenn Morris 2012-04-16 15:02:59 -04:00
parent 20f0c46dcd
commit 68892d275b
2 changed files with 4 additions and 6 deletions

View File

@ -1,5 +1,7 @@
2012-04-16 Glenn Morris <rgm@gnu.org>
* 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).

View File

@ -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)