zshrc: Fix wrong placed comments for debbug vs. debbugm
authorMichael Prokop <devnull@localhost>
Thu, 17 Jul 2008 19:30:32 +0000 (21:30 +0200)
committerMichael Prokop <devnull@localhost>
Thu, 17 Jul 2008 19:30:32 +0000 (21:30 +0200)
debian/changelog
etc/skel/.zshrc

index 1c26a34..ed7af87 100644 (file)
@@ -9,9 +9,11 @@ grml-etc-core (0.3.51) unstable; urgency=low
     - Add support for ${HOME}/.zshenv.
     - Add new function ansi-colors() [via harnir]
     - Support .deb in show-archive() [via harnir]
+    - Fix wrong placed comments for debbug vs. debbugm.
+      Thanks to Dennis Schreiber for pointing out.
   * zshenv: set $PATH on Solaris/SunOS.
 
- -- Frank Terbeck <ft@grml.org>  Fri, 30 May 2008 14:56:45 +0200
+ -- Michael Prokop <mika@grml.org>  Thu, 17 Jul 2008 21:29:56 +0200
 
 grml-etc-core (0.3.50) unstable; urgency=low
 
index 630272e..93e8fcd 100644 (file)
@@ -258,7 +258,7 @@ fi
 # searching
 #f4# Search for newspostings from authors
 agoogle() { ${=BROWSER} "http://groups.google.com/groups?as_uauthors=$*" ; }
-#f4# Search Debian Bug Tracking System by BugID in mbox format
+#f4# Search Debian Bug Tracking System
 debbug()  { 
     setopt localoptions extendedglob
     if [[ $# -eq 1 ]]; then
@@ -278,7 +278,7 @@ debbug()  {
         return 1
     fi
 }
-#f4# Search Debian Bug Tracking System
+#f4# Search Debian Bug Tracking System by BugID in mbox format
 debbugm() { bts show --mbox $1 } # provide bugnummer as "$1"
 #f4# Search DMOZ
 dmoz()    { ${=BROWSER} http://search.dmoz.org/cgi-bin/search\?search=${1// /_} }